Vehicle::getColor: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
 
Line 21: Line 21:


==See also==
==See also==
{{Vehicle_function_c}}
{{Vehicle_definition_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 11:33, 9 May 2024

Zentorno: On the client-side, this function requires three args (red: int, green: int, blue: int), and will return an object: r,g,b


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