Vehicle::getModColor1: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:


==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">vehicle.getModColor1(paintType, color, p3);</syntaxhighlight>
<syntaxhighlight lang="javascript">vehicle.getModColor1(paintType, color, pearlescentColor);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''paintType:''' int
*'''paintType:''' int
*'''color:''' int
*'''color:''' int
*'''p3:''' int
*'''pearlescentColor:''' int
===Return value===
===Return value===
*'''object:''' paintType, color, p3
*'''object:''' paintType, color, pearlescentColor
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
Line 13: Line 13:
</syntaxhighlight>
</syntaxhighlight>
==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:40, 9 May 2024

Syntax

vehicle.getModColor1(paintType, color, pearlescentColor);

Required Arguments

  • paintType: int
  • color: int
  • pearlescentColor: int

Return value

  • object: paintType, color, pearlescentColor

Example

// todo

See also