mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-21 15:03:00 +00:00
add more namespace comments
This commit is contained in:
parent
2a9dca6926
commit
5ca5d1f1de
2 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
local wea = worldeditadditions
|
local wea = worldeditadditions
|
||||||
|
|
||||||
|
--- Noise generation algorithm engines.
|
||||||
|
-- @namespace worldeditadditions.noise.engines
|
||||||
return {
|
return {
|
||||||
available = { "perlin", "perlinmt", "sin", "white", "red", "infrared" },
|
available = { "perlin", "perlinmt", "sin", "white", "red", "infrared" },
|
||||||
Perlin = dofile(wea.modpath.."/lib/noise/engines/perlin.lua"),
|
Perlin = dofile(wea.modpath.."/lib/noise/engines/perlin.lua"),
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
local wea = worldeditadditions
|
local wea = worldeditadditions
|
||||||
|
|
||||||
|
|
||||||
|
--- System to manipulate the world using noise generation functions.
|
||||||
|
-- @namespace worldeditadditions.noise
|
||||||
wea.noise = {}
|
wea.noise = {}
|
||||||
|
|
||||||
-- The command itself
|
-- The command itself
|
||||||
|
|
Loading…
Reference in a new issue