Improve mapgen, add grass, and include the fill tool.

This commit is contained in:
Signal 2026-01-15 18:54:28 -05:00
parent 1e897665bb
commit 4659a008ac
86 changed files with 1098 additions and 293 deletions

14
mods/rgt_world/mapgen.lua Normal file
View file

@ -0,0 +1,14 @@
local c = minetest.get_content_id
local c_stone = c "stone"
local np_continental = {
offset = 0,
scale = 1,
spread = {x = 4096, y = 4096, z = 4096},
seed = 12345,
octaves = 4,
persist = 0.6
}
local n_terrain = {}