Minetest-WorldEditAdditions/worldeditadditions/lib/sculpt/brushes/default_hard.lua
Starbeamrainbowlabs 10c9d6f886
Start implementing a //sculpt command, but it's not finished or tested yet.
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!
2021-12-27 03:11:52 +00:00

9 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