llGetNumberOfSides

From Second Life Wiki
Revision as of 22:54, 21 May 2012 by Wyvern Dryke (talk | contribs)
Jump to navigation Jump to search

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();
       llOwnerSay( "I have " + (string)numOfSides + " sides." );
   }
}</lsl>

See Also

Functions

•  llGetLinkNumberOfSides Get number of faces for a linked prim

Deep Notes

Signature

function integer llGetNumberOfSides();