OsGetCurrentSunHour
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc| | + | {{osslfunc |
− | threat_level = None | + | |threat_level=None |
− | | | + | |function_syntax=float osGetCurrentSunHour() |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | float osGetCurrentSunHour() | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
// | // | ||
//osGetCurrentSunHour() example, by Tom Earth. | //osGetCurrentSunHour() example, by Tom Earth. | ||
Line 18: | Line 14: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description= |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:32, 1 July 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()); } } |