llGetMaxScaleFactor

From Second Life Wiki
Revision as of 16:12, 6 January 2014 by Maestro Linden (talk | contribs)
Jump to navigation Jump to search

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

<lsl>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.");
   }
}</lsl>

See Also

Deep Notes

History

Search JIRA for related Issues

Signature

function float llGetMaxScaleFactor();