6003914bef
so that all CAR01 vehicles start from the same definiton fix CAR01 model and related collision box so that box is always centered. reduce box size so that car can turn without box exeeding model excessively
11 lines
333 B
Lua
Executable File
11 lines
333 B
Lua
Executable File
|
|
local name = "car_grey"
|
|
local definition = vehicle_mash_table_copy(vehicle_mash.car01_definition)
|
|
|
|
definition.description = "Grey car"
|
|
definition.inventory_image = "inv_car_grey.png"
|
|
definition.wield_image = "inv_car_grey.png"
|
|
definition.textures = {"car_grey.png"}
|
|
|
|
vehicle_mash:register_vehicle("vehicle_mash:"..name, definition)
|