setApertureNew: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
m (Text replacement - "<h3 style='display:none'>Notes</h3> <dl class='command_description'> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> <h3 style='display:none'>Bottom Section</h3>" to "") |
||
Line 41: | Line 41: | ||
}} | }} | ||
{{GameCategory|arma3|New Scripting Commands}} | {{GameCategory|arma3|New Scripting Commands}} | ||
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] |
Revision as of 10:33, 18 January 2021
Description
- Description:
- Sets custom camera aperture ([-1] to do it automatically).
- Groups:
- Camera Control
Syntax
- Syntax:
- setApertureNew [min, std, max, stdLum]
- Parameters:
- [min, std, max, stdLum]: Array
- min: Number
- std: Number
- max: Number
- stdLum: Number
- Return Value:
- Nothing
Examples
- Example 1:
setApertureNew [0.3, 0.2, 0.1, 1];
- Example 2:
- Simulate eye adjustment at night:
setDate [2016, 8, 10, 4, 0]; setApertureNew [2, 8, 14, .9];
- Example 3:
- Narrower range for a subtler effect:
setDate [2016, 8, 10, 4, 0]; setApertureNew [2, 5, 9, .8];
Additional Information
- See also:
- setAperture
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on October 30, 2016 - 04:54 (UTC)
- Tofof
-
Some notes on example 2 - try it outdoors on a piece of ground with high contrasting areas. I suggest the end of a runway, standing among the white painted triangles.
Look up about 60 degrees above the horizon and toggle between setApertureNew [2, 8, 14, .9]; and the default setting of setAperture -1;. There should be little change -- at least on the date in the example.
Reset again to setApertureNew [2, 8, 14, .9]; and then pan slowly down until you're basically looking at your feet. The less sky (the main outdoor light source) you see, the 'wider' (toward the 'min' number) the aperture will become. Looking at the ground on a runway, for example, you should be able to easily distinguish the painted white triangles from the unpainted pavement. Again, toggle back to the default aperture. The view should get much darker.
This setting allows for some natural adjustment based on the amount of visible light in the scene, and is highly encouraged over the default fixed aperature for night missions. When you're standing in the beam of a lighthouse, for example (try near the 'Spartan' on Stratis), you will be basically unable to see anything not illuminated by the beam. Once the beam passes and your vision returns to normal, your immediate surroundings will be dimmer, of course, but you'll be able to see further out.