Difference between revisions of "PRIM TEMP ON REZ"

From Second Life Wiki
Jump to navigation Jump to search
((I'm guessing on the version number))
Line 12: Line 12:
|value=4
|value=4
|desc=Used to get or set the objects temporary status. It lives until the next garbage collection cycle (about 1 minute). Does not count against prim limits. There are limits to the number of temporary objects that can exist in a region and the garbage collector may run sooner then expected.
|desc=Used to get or set the objects temporary status. It lives until the next garbage collection cycle (about 1 minute). Does not count against prim limits. There are limits to the number of temporary objects that can exist in a region and the garbage collector may run sooner then expected.
|examples=
|pa={{LSL Constant/List|i_front=[ {{#var:temponrez_const}}, |i_end= ]
|text=When used with [[llSetPrimitiveParams]] & [[llSetLinkPrimitiveParams]]
|i1_type=integer|i1_name=boolean
}}
|pb={{LSL Constant/List|i_front=[[llGetPrimitiveParams]]([ {{#var:temponrez_const}}, |i_end= ]);|
|r_front=Returns the list [ |r_end= ]
|text
|r1_type=integer|r1_name=boolean
}}
|examples
|constants=
|constants=
|functions=
|functions=

Revision as of 20:19, 17 April 2008

Description

Constant: integer PRIM_TEMP_ON_REZ = 4;

The integer constant PRIM_TEMP_ON_REZ has the value 4

Used to get or set the objects temporary status. It lives until the next garbage collection cycle (about 1 minute). Does not count against prim limits. There are limits to the number of temporary objects that can exist in a region and the garbage collector may run sooner then expected.

[ integer, integer boolean ]

[ integer, integer boolean ]
• integer boolean TRUE enables, FALSE disables

When used with llSetPrimitiveParams & llSetLinkPrimitiveParams

llGetPrimitiveParams([ integer,  ]);

llGetPrimitiveParams([ integer,  ]);

Returns the list [ integer boolean ]

• integer boolean TRUE enables, FALSE disables

Related Articles

Deep Notes

History

Before SL 1.9 objects would only be recognized by the garbage collector as temporary if they were rezzed with the temporary status already set. Setting the attribute only effected the object the next time it was rezzed. With 1.9 this was changed so that changing this status flag effected the object immediately. The constant name however was not changed to reflect this functionality change.

Search JIRA for related Issues

Signature

integer PRIM_TEMP_ON_REZ = 4;