mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +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!
11 lines
200 B
Lua
11 lines
200 B
Lua
|
|
return function(filepath)
|
|
local brush_size = { x = 0, y = 0 }
|
|
local brush = { }
|
|
|
|
-- TODO: Import brush here
|
|
|
|
return false, "Error: Not implemented yet"
|
|
|
|
-- return true, brush, brush_size
|
|
end
|