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