OsGetSunParam

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Added note stating which version of OpenSim introduced this function)
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
----
+
{{osslfunc
'''NOTE''' : This function replaces the deprecated [[OsSunGetParam]] function.  
+
|threat_level=ignored
----
+
|permissions=true
 
+
|delay=0
 
+
|additional_info=This function was added in 0.7.2-post-fixes
{|  width="100%" style="border: thin solid black"
+
|function_syntax=float osGetSunParam(string param)
| colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}'''
+
|ossl_example=<source lang = "lsl">
|- valign="top"
+
// ----------------------------------------------------------------
|'''Threat Level''' || <Threat Level goes here>
+
// Example / Sample Script to show function use.
 
+
//
|- valign="top"
+
// Script Title:    osSetSunParam_osGetSunParam.lsl
|'''Function Syntax''' || <source lang="lsl">
+
// Script Author:  WhiteStar Magic
OsGetSunParam(string param);
+
// Threat Level:    None
 +
// Script Source: 
 +
//
 +
// Notes: See Script Source reference for more detailed information
 +
// This sample is full opensource and available to use as you see fit and desire.
 +
// Threat Levels only apply to OSSL & AA Functions
 +
//
 +
// ================================================================
 +
// Inworld Script Line: osSetSunParam(string param, float value);
 +
//
 +
// Example of osSetSunParam
 +
// Params  "year_length" = "number of days to a year"
 +
// Params  "day_length" = "number of seconds to a day"
 +
// Params  "day_night_offset" = "induces a horizon shift"
 +
// Params  "update_interval" = "how often to update the sun's position in frames"
 +
// Params  "day_time_sun_hour_scale" = "scales day light vs nite hours to change day/night ratio"
 +
//
 +
string Params = "day_length";
 +
float Value = 4.0;
 +
integer touched = FALSE;
 +
default
 +
{
 +
    state_entry()
 +
    {
 +
        llSay(0,"Touch to see osSetSunParam & osGetSunParam work.");
 +
    }
 +
    touch_end(integer num)
 +
    {
 +
        if(touched)
 +
        {
 +
            touched = FALSE;
 +
            Value = 4.0;
 +
            osSetSunParam(Params, Value);
 +
            //osSunSetParam(Params, Value);  // deprecated version
 +
            llOwnerSay("Sun Params ("+Params+") = ["+(string)osGetSunParam(Params)+"]");
 +
        }
 +
        else
 +
        {
 +
            touched = TRUE;
 +
            Value = 24.0;
 +
            osSetSunParam(Params, Value);
 +
            //osSunSetParam(Params, Value);  // deprecated version
 +
            llOwnerSay("Sun Params ("+Params+") = ["+(string)osGetSunParam(Params)+"]");
 +
        }
 +
    }
 +
}
 
</source>
 
</source>
|- valign="top"
+
|description='''NOTE''' : This function replaces the deprecated [[OsSunGetParam]] function.
|'''Example(s)||
+
|
 
+
}}
|}
+
 
+
[[Category:OSSL Functions]]
+
 
+
 
+
[[Category:OSSL_functions_without_example]]
+
[[Category:OSSL functions without threat level]]
+

Revision as of 08:48, 15 October 2018

float osGetSunParam(string param)
NOTE : This function replaces the deprecated OsSunGetParam function.
Threat Level This function does not do a threat level check
Permissions Use of this function is always allowed by default
Extra Delay 0 seconds
Example(s)
// ----------------------------------------------------------------
// Example / Sample Script to show function use.
//
// Script Title:    osSetSunParam_osGetSunParam.lsl
// Script Author:   WhiteStar Magic
// Threat Level:    None
// Script Source:   
//
// Notes: See Script Source reference for more detailed information
// This sample is full opensource and available to use as you see fit and desire.
// Threat Levels only apply to OSSL & AA Functions
// 
// ================================================================
// Inworld Script Line: osSetSunParam(string param, float value); 
//
// Example of osSetSunParam
// Params  "year_length" = "number of days to a year"
// Params  "day_length" = "number of seconds to a day"
// Params  "day_night_offset" = "induces a horizon shift"
// Params  "update_interval" = "how often to update the sun's position in frames"
// Params  "day_time_sun_hour_scale" = "scales day light vs nite hours to change day/night ratio"
//
string Params = "day_length";
float Value = 4.0;
integer touched = FALSE;
default
{
    state_entry()
    {
        llSay(0,"Touch to see osSetSunParam & osGetSunParam work.");
    }
    touch_end(integer num)
    {
        if(touched)
        {
            touched = FALSE;
            Value = 4.0;
            osSetSunParam(Params, Value);
            //osSunSetParam(Params, Value);  // deprecated version
            llOwnerSay("Sun Params ("+Params+") = ["+(string)osGetSunParam(Params)+"]");
        }
        else
        {
            touched = TRUE;
            Value = 24.0;
            osSetSunParam(Params, Value);
            //osSunSetParam(Params, Value);  // deprecated version
            llOwnerSay("Sun Params ("+Params+") = ["+(string)osGetSunParam(Params)+"]");
        }
    }
}
Notes
This function was added in 0.7.2-post-fixes


Personal tools
General
About This Wiki