mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-05 15:51:06 +01:00
16 lines
449 B
Lua
16 lines
449 B
Lua
local modname = minetest.get_current_modname()
|
|
local modpath = minetest.get_modpath(modname)
|
|
mcl_minecarts = {}
|
|
local mod = mcl_minecarts
|
|
mcl_minecarts.modpath = modpath
|
|
|
|
-- Constants
|
|
mod.SPEED_MAX = 10
|
|
mod.FRICTION = 0.4
|
|
mod.MAX_TRAIN_LENGTH = 4
|
|
mod.CART_BLOCK_SIZE = 64
|
|
mod.PASSENGER_ATTACH_POSITION = vector.new(0, -1.75, 0)
|
|
|
|
for _,filename in pairs({"storage","functions","rails","train","carts"}) do
|
|
dofile(modpath.."/"..filename..".lua")
|
|
end
|