write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
25
mods/creatura/init.lua
Normal file
25
mods/creatura/init.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
creatura = {}
|
||||
|
||||
local path = minetest.get_modpath("creatura")
|
||||
|
||||
dofile(path.."/api.lua")
|
||||
dofile(path.."/pathfinding.lua")
|
||||
dofile(path.."/pathfinder_deprecated.lua")
|
||||
dofile(path.."/methods.lua")
|
||||
|
||||
-- Optional Files --
|
||||
|
||||
-- Optional files can be safely removed
|
||||
-- by game developers who don't need the
|
||||
-- extra features
|
||||
|
||||
local function load_file(filepath, filename)
|
||||
if io.open(filepath .. "/" .. filename, "r") then
|
||||
dofile(filepath .. "/" .. filename)
|
||||
else
|
||||
minetest.log("action", "[Creatura] The file " .. filename .. " could not be loaded.")
|
||||
end
|
||||
end
|
||||
|
||||
load_file(path, "boids.lua")
|
||||
load_file(path, "spawning.lua")
|
Loading…
Add table
Add a link
Reference in a new issue