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

GetVehicleMaxBraking

Материал из RAGE MP Wiki Archive
Версия от 14:26, 12 декабря 2019; imported>Avoid (Created page with "Returns the vehicle's max braking. {{CSharpContainer| {{#tag:pre|float {{Template:CSharp_Serverside_namespace}}Vehicle.GetVehicleMaxBraking(VehicleHash model);}} {{Parameters...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Returns the vehicle's max braking.


float NAPI.Vehicle.GetVehicleMaxBraking(VehicleHash model);

Parameters

  • model: parameter input should be in VehicleHash type

NOTE: This function returns the max braking in float type.

Example

<syntaxhighlight lang="csharp"> float maxBraking = NAPI.Vehicle.GetVehicleMaxBraking(VehicleHash model); </syntaxhighlight>