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

PopVehicleTyre

Материал из RAGE MP Wiki Archive
Версия от 21:44, 27 ноября 2019; imported>Avoid (Created page with "This function pops a vehicle's tyre. {{CSharpContainer| {{#tag:pre|void {{Template:CSharp_Serverside_namespace}}Vehicle.PopVehicleTyre(Vehicle vehicle, int tyre, bool pop);}}...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

This function pops a vehicle's tyre.


void NAPI.Vehicle.PopVehicleTyre(Vehicle vehicle, int tyre, bool pop);

Parameters

  • vehicle: parameter input should be in Vehicle type
  • tyre: parameter input should be in int type
  • pop: parameter input should be in bool type

Example

<syntaxhighlight lang="csharp"> NAPI.Vehicle.PopVehicleTyre(vehicle, tyre, pop); </syntaxhighlight>