OsGetCurrentSunHour
From OpenSimulator
(Difference between revisions)
m |
|||
| Line 1: | Line 1: | ||
| − | {| | + | {{osslfunc| |
| − | + | threat_level = None | |
| − | | | + | | |
| − | + | function_syntax = <source lang="lsl"> | |
| − | + | ||
| − | + | ||
| − | + | ||
float osGetCurrentSunHour() | float osGetCurrentSunHour() | ||
</source> | </source> | ||
| − | | | + | | |
| − | + | ossl_example = <source lang="lsl"> | |
// | // | ||
//osGetCurrentSunHour() example, by Tom Earth. | //osGetCurrentSunHour() example, by Tom Earth. | ||
| Line 21: | Line 18: | ||
} | } | ||
</source> | </source> | ||
| − | + | | | |
| − | | | + | additional_info = |
| − | + | | | |
| − | + | }} | |
Revision as of 14:57, 12 June 2011
float osGetCurrentSunHour() | |
| No descriptions provided | |
| Threat Level | None |
| Permissions | No permissions specified |
| Extra Delay | No function delay specified |
| Example(s) | |
// //osGetCurrentSunHour() example, by Tom Earth. // default { state_entry() { llSay(0, "Current sun hour: "+(string)osGetCurrentSunHour()); } } | |