OsSetRegionSunSettings
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
m (some syntax modification (may be major or minor)) |
||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=Nuisance | |threat_level=Nuisance | ||
− | |function_syntax=osSetRegionSunSettings( | + | |function_syntax=void osSetRegionSunSettings(integer useEstateSun, integer sunFixed, float sunHour) |
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
default | default |
Revision as of 02:36, 2 July 2011
void osSetRegionSunSettings(integer useEstateSun, integer sunFixed, float sunHour)
| |
No descriptions provided | |
Threat Level | Nuisance |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
default { state_entry( ) { osSetRegionSunSettings( FALSE, TRUE, 12.0 ); //Sets the region/ terrain-tab to non-estate, fixed-sun and at dusk settings. } } |