OsSetRegionSunSettings
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc | + | {{osslfunc |
− | threat_level = Nuisance | + | |threat_level=Nuisance |
− | | | + | |function_syntax=osSetRegionSunSettings(bool useEstateSun, bool sunFixed, double sunHour); |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | osSetRegionSunSettings(bool useEstateSun, bool sunFixed, double sunHour); | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
default | default | ||
{ | { | ||
Line 16: | Line 12: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description= |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:40, 1 July 2011
osSetRegionSunSettings(bool useEstateSun, bool sunFixed, double 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. } } |