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

GetVehicleDashboardColor

Материал из RAGE MP Wiki Archive
Версия от 17:20, 12 декабря 2019; imported>Avoid (Created page with "Returns the vehicle's dashboard color. {{CSharpContainer| {{#tag:pre|int {{Template:CSharp_Serverside_namespace}}Vehicle.GetVehicleDashboardColor(Vehicle vehicle);}} {{Parame...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Returns the vehicle's dashboard color.


int NAPI.Vehicle.GetVehicleDashboardColor(Vehicle vehicle);

Parameters

  • vehicle: parameter input should be in Vehicle type

NOTE: This function returns the dashboard color in int type.

Example

<syntaxhighlight lang="csharp"> int dashboardColor = NAPI.Vehicle.GetVehicleDashboardColor(vehicle); </syntaxhighlight>