Перейти к содержанию

SetVehicleWheelType

Материал из RAGE MP Wiki Archive

This function sets the type of the vehicle wheels.

Wheel Types

  • 0: Sport
  • 1: Muscle
  • 2: Lowrider
  • 3: SUV
  • 4: Offroad
  • 5: Tuner
  • 6: Bike Wheels
  • 7: High End


void NAPI.Vehicle.SetVehicleWheelType(Vehicle vehicle, int type);

Parameters

  • vehicle: parameter input should be in Vehicle type
  • type: parameter input should be in int type

Example

<syntaxhighlight lang="csharp"> NAPI.NAPI.Vehicle.SetVehicleWheelType(vehicle, 5); </syntaxhighlight>