llGetObjectPrimCount

From Second Life Wiki
Revision as of 18:36, 21 March 2008 by Gally Young (talk | contribs) (add cat Object)
Jump to navigation Jump to search

Summary

Function: integer llGetObjectPrimCount( key object_id );

Returns an integer that is the total number of prims for an object in the sim.

• key object_id

Examples

<lsl> default{

 touch_start( integer vIntTouched ){
   llSay( PUBLIC_CHANNEL, "This object has "
                          + (string)llGetObjectPrimCount( llGetKey() )
                          + " prims" );
   //-- llGetObjectPrimCount( llGetKey() ) is equavalent to
   //-- LlGetNumberOfPrims(), with the option to use it for 
   //-- any object you have a key for.
 }

}

</lsl>

See Also

Functions

•  llGetNumberOfPrims Returns the number of prims in the current object.

Deep Notes

Search JIRA for related Issues

Signature

function integer llGetObjectPrimCount( key object_id );