OsGetCurrentSunHour
From OpenSimulator
(Difference between revisions)
(New page: '''float osGetCurrentSunHour()''' <source lang="lsl"> default { state_entry() { llSay(0, "Current sun hour: "+(string)osGetCurrentSunHour()); } } </source>) |
|||
Line 2: | Line 2: | ||
<source lang="lsl"> | <source lang="lsl"> | ||
+ | // | ||
+ | //osGetCurrentSunHour() example, by Tom Earth. | ||
+ | // | ||
default | default | ||
{ | { |
Revision as of 12:46, 17 January 2010
float osGetCurrentSunHour()
// //osGetCurrentSunHour() example, by Tom Earth. // default { state_entry() { llSay(0, "Current sun hour: "+(string)osGetCurrentSunHour()); } }