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