mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-26 09:03:01 +00:00
Reorder brushes
circle_soft1 is now the default brush, as it's awesome
This commit is contained in:
parent
b0e0b83c0d
commit
ef2dbc1806
5 changed files with 7 additions and 7 deletions
|
@ -2,12 +2,12 @@ local wea = worldeditadditions
|
||||||
|
|
||||||
local sculpt = {
|
local sculpt = {
|
||||||
brushes = {
|
brushes = {
|
||||||
default_hard = dofile(wea.modpath.."/lib/sculpt/brushes/default_hard.lua"),
|
circle_soft1 = dofile(wea.modpath.."/lib/sculpt/brushes/circle_soft1.lua"),
|
||||||
default = dofile(wea.modpath.."/lib/sculpt/brushes/default.lua"),
|
|
||||||
default_soft = dofile(wea.modpath.."/lib/sculpt/brushes/default_soft.lua"),
|
|
||||||
square = dofile(wea.modpath.."/lib/sculpt/brushes/square.lua"),
|
|
||||||
circle = dofile(wea.modpath.."/lib/sculpt/brushes/circle.lua"),
|
circle = dofile(wea.modpath.."/lib/sculpt/brushes/circle.lua"),
|
||||||
circle_soft1 = dofile(wea.modpath.."/lib/sculpt/brushes/circle_soft1.lua")
|
square = dofile(wea.modpath.."/lib/sculpt/brushes/square.lua"),
|
||||||
|
gaussian_hard = dofile(wea.modpath.."/lib/sculpt/brushes/gaussian_hard.lua"),
|
||||||
|
gaussian = dofile(wea.modpath.."/lib/sculpt/brushes/gaussian.lua"),
|
||||||
|
gaussian_soft = dofile(wea.modpath.."/lib/sculpt/brushes/gaussian_soft.lua"),
|
||||||
},
|
},
|
||||||
make_brush = dofile(wea.modpath.."/lib/sculpt/make_brush.lua"),
|
make_brush = dofile(wea.modpath.."/lib/sculpt/make_brush.lua"),
|
||||||
make_preview = dofile(wea.modpath.."/lib/sculpt/make_preview.lua"),
|
make_preview = dofile(wea.modpath.."/lib/sculpt/make_preview.lua"),
|
||||||
|
|
|
@ -14,12 +14,12 @@ worldedit.register_command("sculpt", {
|
||||||
require_pos = 1,
|
require_pos = 1,
|
||||||
parse = function(params_text)
|
parse = function(params_text)
|
||||||
if not params_text or params_text == "" then
|
if not params_text or params_text == "" then
|
||||||
params_text = "default"
|
params_text = "circle_soft1"
|
||||||
end
|
end
|
||||||
|
|
||||||
local parts = wea.split_shell(params_text)
|
local parts = wea.split_shell(params_text)
|
||||||
|
|
||||||
local brush_name = "default"
|
local brush_name = "circle_soft1"
|
||||||
local height = 5
|
local height = 5
|
||||||
local brush_size = 10
|
local brush_size = 10
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue