Checkpoint::getColor: Difference between revisions

From RAGE Multiplayer Wiki
m (category)
mNo edit summary
 
Line 1: Line 1:
'''Function''': Returns an array of 4 numbers, with a checkpoint color
'''Function''': Returns an array of 4 numbers, with a checkpoint color
==Return==
==Return==
* '''<span style="color:#008017>Array<Number></span>'''
* {{RageType|Array<Number>}}


==Example==
==Example==
Line 14: Line 14:
}}
}}


[[Category:Checkpoint]]
[[Category:Checkpoint API]]
[[Category:Server-side Function]]
[[Category:Server-side Function]]

Latest revision as of 16:51, 17 May 2019

Function: Returns an array of 4 numbers, with a checkpoint color

Return

  • Array<Number>

Example

Server-Side
const checkpoint = mp.checkpoints.new(2, new mp.Vector3(10, 10, 72), new mp.Vector3(), 4, 150, 255, 255, 255, true);
const color = checkpoint.getColor();

console.log(color); // -> [150, 255, 255, 255]
console.log(color[0]); // -> 150