sunOrMoon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:ArmA 2 OA: New Scripting Commands List" to "[[Category:Arma 2: Operation Arrowhead: New Scripting Commands List")
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns the sun to moon transition state in range 0...1. The return value is either 0 or 1 most of the time, the in-between values only returned during a few minutes in the morning and in the evening, depending on the [[date]], and could be something like:<br><br>
| <code style{{=}}" float: right; font-size: 0.85em">12:00 - 1
<tt>12:00 - 1</tt><br>
..... - 1
<tt>..... - 1</tt><br>
18:39 - 0.911201
<tt>18:39 - 0.911201</tt><br>
18:42 - 0.576303
<tt>18:42 - 0.576303</tt><br>
18:45 - 0.240862
<tt>18:45 - 0.240862</tt><br>
18:48 - 0
<tt>18:48 - 0</tt><br>
..... - 0
<tt>..... - 0</tt><br>
06:00 - 0.0695308
<tt>06:00 - 0.0695308</tt><br>
06:03 - 0.404731
<tt>06:03 - 0.404731</tt><br>
06:06 - 0.739519
<tt>06:06 - 0.739519</tt><br>
06:09 - 1
<tt>06:09 - 1</tt><br>
..... - 1</code>
<tt>..... - 1</tt><br> |DESCRIPTION=
Returns the sun to moon transition state in range 0..1.<br>
The return value is either 0 or 1 most of the time, the in-between values only returned during a few minutes in the morning and in the evening, depending on the [[date]], and could be something as shown on the side.
|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________




| '''sunOrMoon''' |SYNTAX=
| [[sunOrMoon]] |SYNTAX=


| [[Number]] |RETURNVALUE=
| [[Number]] |RETURNVALUE=
Line 29: Line 31:
   
   
|x1= <code>_transitionState = [[sunOrMoon]];</code> |EXAMPLE1=
|x1= <code>_transitionState = [[sunOrMoon]];</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[moonIntensity]], [[moonPhase]] |SEEALSO=
| [[moonIntensity]], [[moonPhase]] |SEEALSO=
}}
}}


<h3 style="display:none">Notes</h3>
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">
<dd class="notedate">Posted on September 21, 2014 - 15:44 (UTC)</dd>
<dt class="note">[[User:Killjoe|Killjoe]]</dt>
<dd class="note">
Note that at a 0.99 value, the twilight is still quite dark. This can be tested with :
<code>[[onEachFrame]] { [[systemChat]] [[format]] ["%1", [[sunOrMoon]]]; };</code>
</dd>
</dl>
</dl>


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>


[[Category:Arma 2: Operation Arrowhead: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Notes: Improper Formatting|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on September 21, 2014 - 15:44 (UTC)</dd>
<dt class="note">[[User:Killjoe|Killjoe]]</dt>
<dd class="note">
Note that at a 0.99 value, the twilight is still quite dark.
<br>
Can be tested with :
<br>
<code>//test
onEachFrame
{
systemchat format ["%1",sunOrMoon];
};</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 23:43, 19 November 2019

Hover & click on the images for description

Description

Description:
12:00 - 1 ..... - 1 18:39 - 0.911201 18:42 - 0.576303 18:45 - 0.240862 18:48 - 0 ..... - 0 06:00 - 0.0695308 06:03 - 0.404731 06:06 - 0.739519 06:09 - 1 ..... - 1 Returns the sun to moon transition state in range 0..1.
The return value is either 0 or 1 most of the time, the in-between values only returned during a few minutes in the morning and in the evening, depending on the date, and could be something as shown on the side.
Groups:
Uncategorised

Syntax

Syntax:
sunOrMoon
Return Value:
Number

Examples

Example 1:
_transitionState = sunOrMoon;

Additional Information

See also:
moonIntensitymoonPhase

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

Notes

Posted on September 21, 2014 - 15:44 (UTC)
Killjoe
Note that at a 0.99 value, the twilight is still quite dark. This can be tested with : onEachFrame { systemChat format ["%1", sunOrMoon]; };

Bottom Section