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