mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-16 13:03:00 +00:00
Starbeamrainbowlabs
10c9d6f886
First up: test that our initial basic dynamic brushes work as intended with the //sculptlist [preview] command. Also on the todo list: document it in the chat command reference!
8 lines
223 B
Lua
8 lines
223 B
Lua
local wea = worldeditadditions
|
|
|
|
local __smooth = dofile(wea.modpath.."/lib/sculpt/brushes/__smooth.lua")
|
|
|
|
return function(size)
|
|
local success, brush, size_actual = __smooth(size, 1)
|
|
return success, brush, size_actual
|
|
end
|