getLighting: Difference between revisions
BrettMayson (talk | contribs) No edit summary |
BrettMayson (talk | contribs) mNo edit summary |
||
| Line 10: | Line 10: | ||
|s1= [[getLighting]] | |s1= [[getLighting]] | ||
|r1= [[Array]] | |r1= [[Array]] with [ambientLightColor, ambientLightBrightness, lightDirection, starsVisibility]: | ||
* ambientLightColor: [[Color|Color (RGB)]] | * ambientLightColor: [[Color|Color (RGB)]] | ||
* ambientLightBrightness: [[Number]] | * ambientLightBrightness: [[Number]] | ||
Revision as of 10:51, 2 January 2026
Description
- Description:
- Gets general environment's light settings.
- Groups:
- Lights
Syntax
- Syntax:
- getLighting
- Return Value:
- Array with [ambientLightColor, ambientLightBrightness, lightDirection, starsVisibility]:
- ambientLightColor: Color (RGB)
- ambientLightBrightness: Number
- lightDirection: Vector3D
- starsVisibility: Number
Examples
- Example 1:
- getLighting; // returns [[0.646753,0.781818,1],28526.2,[-0.0167152,0.211598,-0.977214],0]
- Example 2:
- getLighting params ["_ambientLightColour", "_ambientLightBrightness", "_lightDirection", "_starsVisibility"];
Additional Information
- See also:
- getLightingAt moonPhase Light Source Tutorial
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note
- Posted on Sep 18, 2023 - 13:20 (UTC)
-
Possible to check if a position is in a shadow.
[player,"VIEW"] checkVisibility [eyePos player,eyePos player vectorDiff ((getLighting#2) vectorMultiply 200)]