2021-07-03 21:53:16 +00:00
|
|
|
local wea = worldeditadditions
|
|
|
|
|
2023-08-01 23:14:48 +00:00
|
|
|
|
|
|
|
--- System to manipulate the world using noise generation functions.
|
|
|
|
-- @namespace worldeditadditions.noise
|
2021-07-03 21:53:16 +00:00
|
|
|
wea.noise = {}
|
2021-07-03 00:44:36 +00:00
|
|
|
|
|
|
|
-- The command itself
|
2021-07-03 21:53:16 +00:00
|
|
|
dofile(wea.modpath.."/lib/noise/run2d.lua")
|
2021-07-03 00:44:36 +00:00
|
|
|
|
|
|
|
-- Dependencies
|
2021-07-03 21:53:16 +00:00
|
|
|
dofile(wea.modpath.."/lib/noise/apply_2d.lua")
|
|
|
|
dofile(wea.modpath.."/lib/noise/make_2d.lua")
|
|
|
|
dofile(wea.modpath.."/lib/noise/params_apply_default.lua")
|
2021-07-03 00:44:36 +00:00
|
|
|
|
|
|
|
-- Noise generation engines
|
2021-07-04 12:21:13 +00:00
|
|
|
wea.noise.engines = dofile(wea.modpath.."/lib/noise/engines/init.lua")
|