Difference between revisions of "LlGetNumberOfSides"

From Second Life Wiki
Jump to navigation Jump to search
Line 3: Line 3:
|func=llGetNumberOfSides
|func=llGetNumberOfSides
|return_type=integer
|return_type=integer
|func_footnote
|func_footnote=See {{LSLGC|Face}} for more information about faces and the conditions that control the number of faces a prim will have.
|func_desc
|func_desc
|return_text=that is the number of sides (or faces) of the prim.
|return_text=that is the number of faces (or sides) of the prim.
|spec
|spec
|caveats
|caveats
Line 18: Line 18:
     }
     }
}</lsl>
}</lsl>
|helpers
|helpers
|also_functions
|also_functions

Revision as of 04:23, 2 August 2008

Summary

Function: integer llGetNumberOfSides( );
0.0 Forced Delay
10.0 Energy

Returns an integer that is the number of faces (or sides) of the prim.

See Face for more information about faces and the conditions that control the number of faces a prim will have.

Examples

<lsl>default {

   state_entry()
   {
       // Set the hovertext to indicate the number of sides
       integer numOfSides = llGetNumberOfSides();
       llSetText( "I have " + (string)numOfSides + " sides." );
   }
}</lsl>

Deep Notes

Signature

function integer llGetNumberOfSides();