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
221 B
Lua
11 lines
221 B
Lua
|
|
--- Returns a simple square brush with 100% weight for every pixel.
|
|
return function(size)
|
|
local result = {}
|
|
for y=0, size.y do
|
|
for x=0, size.x do
|
|
result[y*size.x + x] = 1
|
|
end
|
|
end
|
|
return true, result, size
|
|
end
|