Difference between revisions of "On rez"

From Second Life Wiki
Jump to navigation Jump to search
(added details for on_rez event)
Line 2: Line 2:
|event_id=27|event_delay|event=on_rez
|event_id=27|event_delay|event=on_rez
|p1_type=integer|p1_name=start_param|p1_desc
|p1_type=integer|p1_name=start_param|p1_desc
|event_desc=Triggered when task is rezed in from inventory or another task
|event_desc=Triggered when an object is rezzed from inventory or from a prim (by a script). Also triggered in an attachment when a user logs in with it attached or when a user attaches it.
 
The start parameter is zero when an object is rezzed from a user's inventory. Otherwise it is the parameter supplied to [[llRezObject]] or [[llRezAtRoot]]. The start parameter is available at any subsequent time by calling [[llGetStartParameter]].
|constants
|constants
|spec
|spec
|caveats
|caveats=If the object is rezzed by a script in another object then the [[object_rez]] event in that object is not serialized with respect to the on_rez event in the rezzed object.
|examples
|examples
|helpers
|helpers

Revision as of 15:15, 19 March 2007

Description

Event: on_rez( integer start_param ){ ; }

Triggered when an object is rezzed from inventory or from a prim (by a script). Also triggered in an attachment when a user logs in with it attached or when a user attaches it.

The start parameter is zero when an object is rezzed from a user's inventory. Otherwise it is the parameter supplied to llRezObject or llRezAtRoot. The start parameter is available at any subsequent time by calling llGetStartParameter.

• integer start_param

Caveats

If the object is rezzed by a script in another object then the object_rez event in that object is not serialized with respect to the on_rez event in the rezzed object.

All Issues ~ Search JIRA for related Bugs

Examples

See Also

Events

•  object_rez triggered when this object rezzes an object from inventory

Functions

•  llGetStartParameter
•  llRezObject
•  llRezAtRoot

Deep Notes

Signature

event void on_rez( integer start_param );