Vehicle::getColor: Difference between revisions

From RAGE Multiplayer Wiki
Line 10: Line 10:


==Example==
==Example==
<syntaxhighlight lang="javascript">
<pre>
let primaryColor = player.vehicle.getColor(0)
let primaryColor = player.vehicle.getColor(0)
let secondaryColor = player.vehicle.getColor(1)
let secondaryColor = player.vehicle.getColor(1)
Line 16: Line 16:
// If the vehicle primary color was black the following would return 0
// If the vehicle primary color was black the following would return 0
console.log(primaryColor)
console.log(primaryColor)
</syntaxhighlight>
</pre>
 
==See also==
==See also==
{{Vehicle_function_c}}
{{Vehicle_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Revision as of 17:46, 16 August 2018

Syntax

vehicle.getColor(id);

Required Arguments

  • id: int

(0 - Primary Color, 1 - Secondary Color)

Return value

  • integer: color

Example

let primaryColor = player.vehicle.getColor(0)
let secondaryColor = player.vehicle.getColor(1)

// If the vehicle primary color was black the following would return 0
console.log(primaryColor)

See also