
setSuspensionDamping(damp, wheel)
- Sets the suspension damping for the selected tire.
- amount of the suspension damping.
- Type: float
- Type: integer
- 0 = first wheel added
- 1 = second wheel added
- 2 = third wheel added
- 3 = fourth wheel added

Sample Code
################ set the selected tire suspension damping
#import bge
import bge
# get current scene
scene = bge.logic.getCurrentScene()
# get object list
objList = scene.objects
# get vehicle object named car
objCar = objList["Car"]
# Retrieve constraint ID you saved as a property when you created the vehicle constraint
constraint_ID = objCar["constraint_ID"]
# get the vehicle
vehicle = bge.constraints.getVehicleConstraint(constraint_ID)
# first tire added
wheel = 0
# damping amount
damp = 4.5
set the suspension damping
damp_tire = vehicle.setSuspensionDamping(damp,wheel)