You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
464 B
21 lines
464 B
5 years ago
|
|
||
|
carts = {}
|
||
|
carts.modpath = minetest.get_modpath("carts")
|
||
|
carts.railparams = {}
|
||
|
|
||
|
-- Maximal speed of the cart in m/s (min = -1)
|
||
|
carts.speed_max = 7
|
||
|
-- Set to -1 to disable punching the cart from inside (min = -1)
|
||
|
carts.punch_speed_max = 5
|
||
|
|
||
|
|
||
|
dofile(carts.modpath.."/functions.lua")
|
||
|
dofile(carts.modpath.."/rails.lua")
|
||
|
|
||
|
-- Support for non-default games
|
||
|
if not default.player_attached then
|
||
|
default.player_attached = {}
|
||
|
end
|
||
|
|
||
|
dofile(carts.modpath.."/cart_entity.lua")
|