llGetObjectPrimCount

From Second Life Wiki
Revision as of 01:38, 18 August 2008 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Summary

Function: integer llGetObjectPrimCount( key prim );

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

• key prim

If prim is not the key of a prim in the sim, then the return is zero. Avatars are not counted.

Caveats

  • This cannot be used to detect if an avatar is seated, use llGetAgentInfo instead.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>default{

 touch_start( integer vIntTouched ){
   integer prims = llGetObjectPrimCount( llGetKey() );
   llSay( PUBLIC_CHANNEL, "This object has "
                          + (string)prims
                          + " prims and "
                          + (string)(llGetNumberOfPrims() - prims)
                          + " avatars.");
 }
}</lsl>

Notes

llGetObjectPrimCount can be used as an alternative for llGetAgentSize for testing if a uuid that is known to be in the sim is an avatar. The big difference being the two is that llGetObjectPrimCount returns zero on avatars while llGetAgentSize returns ZERO_VECTOR on prims. These two could be used in conjunction to test if the uuid is in the sim but llGetBoundingBox mayb be a better choice.

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 prim );