File size: 528 Bytes
0712d5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | -- src/ReplicatedStorage/Shared/VehicleConfig.lua
local VehicleConfig = {
-- Physical properties for the truck bed to prevent logs from sliding off easily while driving
-- Density, Friction, Elasticity, FrictionWeight, ElasticityWeight
-- Extremely high Friction and FrictionWeight to lock the logs to the bed
FlatbedPhysicalProperties = PhysicalProperties.new(1.0, 2.0, 0, 100, 100),
CollisionGroups = {
Logs = "Logs",
Vehicles = "Vehicles",
}
}
return VehicleConfig
|