vehicle_mash/grey.lua
Vanessa Ezekowitz 6003914bef rewrite how CAR01 vehicles are defined
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
2016-08-11 04:33:20 -04:00

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)