Difference between revisions of "LlGetMaxScaleFactor"

From Second Life Wiki
Jump to navigation Jump to search
m
m
 
Line 10: Line 10:
|constants
|constants
|examples=
|examples=
<lsl>default
<source lang="lsl2">default
{  
{  
     touch_start(integer total_number)
     touch_start(integer total_number)
Line 19: Line 19:
             + " when calling llScaleByFactor() on this linkset.");
             + " when calling llScaleByFactor() on this linkset.");
     }
     }
}</lsl>
}</source>
|helpers
|helpers
|also_functions=
|also_functions=

Latest revision as of 02:13, 22 January 2015

Summary

Function: float llGetMaxScaleFactor( );

Returns a float that is the largest scaling factor that can be used with llScaleByFactor to resize the object. This maximum is determined by the Linkability Rules and prim scale limits.

Examples

default
{ 
    touch_start(integer total_number)
    {
        float min_factor = llGetMinScaleFactor();
        float max_factor = llGetMaxScaleFactor();
        llSay(0, "Choose a value between " + (string)min_factor + " and " + (string)max_factor
            + " when calling llScaleByFactor() on this linkset.");
    }
}

See Also

Deep Notes

History

Search JIRA for related Issues

Signature

function float llGetMaxScaleFactor();