GetVehicleCustomTires
Returns if vehicle has custom tires.
C# Syntax
bool NAPI.Vehicle.GetVehicleCustomTires(Vehicle vehicle);
Parameters
- vehicle: parameter input should be in Vehicle type
NOTE: This function returns the status in bool type.
Example
bool hasCustomTires = NAPI.Vehicle.GetVehicleCustomTires(vehicle);
if(hasCustomTires)
{
//Vehicle has custom tires..
}