1
0
mirror of git://repo.or.cz/rocks.git synced 2024-09-30 08:10:39 +02:00
rocks/init.lua

27 lines
593 B
Lua
Raw Normal View History

-- Load translation library if intllib is installed
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else
S = function ( s ) return s end
end
local modpath=minetest.get_modpath(minetest.get_current_modname())
dofile(modpath.."/register.lua")
rocks.noiseparams_layers = {
offset = 0,
scale = 1,
2015-01-11 11:16:16 +01:00
spread = {x=80, y=80, z=80},
octaves = 2,
persist = 0.7
}
dofile(modpath.."/mapgen.lua")
2015-01-10 15:46:45 +01:00
dofile(modpath.."/geologica.lua")
print("[rocks] loaded.")