DRAW LIGHT WITH RANGE

From GTAMods Wiki
Jump to navigation Jump to search
DRAW_LIGHT_WITH_RANGE
Number of parameters: 8
Parameter #TypeDescription
1.FloatX coords
2.FloatY coords
3.FloatZ coords
4.intred
5.intgreen
6.intblue
7.floatintensity
8.floatrange
Return value:
TypeDescription
None

intensity 0-10 range 0-100 rgb 0-255

static void DrawLightWithRange(f32 x, f32 y, f32 z, int red, int green, int blue, f32 intensity, f32 range) { NativeInvoke::Invoke<NATIVE_DRAW_LIGHT_WITH_RANGE, ScriptVoid>(x, y, z, red, green, blue, intensity, range); }