Vehicle::getPaint: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "{{Incomplete Functions}}")
 
No edit summary
Line 1: Line 1:
{{Incomplete Functions}}
 
==Syntax==
<pre>vehicle.getPaint(id);</pre>
=== Required Arguments ===
*'''id:''' int
 
(0 - Primary Color, 1 - Secondary Color)
===Return value===
*'''integer:''' color
 
==Example==
<pre>
let primaryColor = player.vehicle.getPaint(0)
let secondaryColor = player.vehicle.getPaint(1)
 
// If the vehicle primary color was black the following would return 0
console.log(primaryColor)
</pre>
 
==See also==
{{Vehicle_function_c}}
[[Category:Clientside API]]
[[Category:TODO: Example]]

Revision as of 13:18, 1 September 2019

Syntax

vehicle.getPaint(id);

Required Arguments

  • id: int

(0 - Primary Color, 1 - Secondary Color)

Return value

  • integer: color

Example

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

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

See also