add more namespace comments

This commit is contained in:
Starbeamrainbowlabs 2023-08-02 00:14:48 +01:00
parent 2a9dca6926
commit 5ca5d1f1de
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
local wea = worldeditadditions
--- Noise generation algorithm engines.
-- @namespace worldeditadditions.noise.engines
return {
available = { "perlin", "perlinmt", "sin", "white", "red", "infrared" },
Perlin = dofile(wea.modpath.."/lib/noise/engines/perlin.lua"),

View File

@ -1,5 +1,8 @@
local wea = worldeditadditions
--- System to manipulate the world using noise generation functions.
-- @namespace worldeditadditions.noise
wea.noise = {}
-- The command itself