OsGetPrimCount
From OpenSimulator
(Difference between revisions)
| Line 19: | Line 19: | ||
</source> | </source> | ||
|description= | |description= | ||
| − | + | returns the number of prims of the current linkset or of the linkset that includes a prim with UUID objectID. | |
| − | + | ||
| − | + | ||
|additional_info=This function was added in 0.9.3.0 | |additional_info=This function was added in 0.9.3.0 | ||
}} | }} | ||
Revision as of 14:03, 14 June 2023
integer osGetPrimCount()
integer osGetPrimCount(key objectID) | |
| returns the number of prims of the current linkset or of the linkset that includes a prim with UUID objectID. | |
| Threat Level | ignore is unknown threat level |
| Permissions | Use of this function is always allowed by default |
| Extra Delay | 0 seconds |
| Example(s) | |
default { state_entry() { llSay(0, "Script running"); } touch_start(integer num) { llOwnerSay(" this linkset has " + (string) osGetPrimCount() + " prims"); } } | |
| Notes | |
| This function was added in 0.9.3.0 | |