mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-10 01:13:45 +01:00
11 lines
424 B
Lua
11 lines
424 B
Lua
local wea = worldeditadditions
|
|
|
|
|
|
return {
|
|
available = { "perlin", "sin", "white" },
|
|
Perlin = dofile(wea.modpath.."/lib/noise/engines/perlin.lua"),
|
|
Sin = dofile(wea.modpath.."/lib/noise/engines/sin.lua"),
|
|
White = dofile(wea.modpath.."/lib/noise/engines/white.lua")
|
|
-- TODO: Follow https://www.redblobgames.com/articles/noise/introduction.html and implement different colours of noise (*especially* red and pink noise)
|
|
}
|