OsGetCurrentSunHour
From OpenSimulator
(Difference between revisions)
m |
|||
| (6 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | { | + | {{osslfunc |
| − | | | + | |threat_level=ignored |
| − | | | + | |permissions=true |
| − | | | + | |delay=0 |
| − | + | |function_syntax=float osGetCurrentSunHour() | |
| − | + | |ossl_example=<source lang="lsl"> | |
| − | | | + | |
| − | float osGetCurrentSunHour() | + | |
| − | + | ||
| − | | | + | |
| − | + | ||
// | // | ||
//osGetCurrentSunHour() example, by Tom Earth. | //osGetCurrentSunHour() example, by Tom Earth. | ||
| Line 21: | Line 16: | ||
} | } | ||
</source> | </source> | ||
| − | + | |description=Returns a float value of the current region sun hour (24 hour clock). | |
| − | | | + | | |
| − | + | |additional_info= Since in 0.9.2 Hour 0 is midnight. | |
| − | + | }} | |
Latest revision as of 11:31, 3 July 2020
float osGetCurrentSunHour()
| |
| Returns a float value of the current region sun hour (24 hour clock). | |
| Threat Level | This function does not do a threat level check |
| Permissions | Use of this function is always allowed by default |
| Extra Delay | 0 seconds |
| Example(s) | |
// //osGetCurrentSunHour() example, by Tom Earth. // default { state_entry() { llSay(0, "Current sun hour: "+(string)osGetCurrentSunHour()); } } | |
| Notes | |
| Since in 0.9.2 Hour 0 is midnight. | |