Difference between revisions of "LINK ROOT"

From Second Life Wiki
Jump to navigation Jump to search
(LINK_THIS is a safe alternative if the script is in the root, and only refers to the root)
(missing desc)
 
Line 3: Line 3:
|type=integer
|type=integer
|value=1
|value=1
|desc
|desc=Targets the root prim in the linkset.
|caveats=
|caveats=
*In a single prim object LINK_ROOT will not refer to the root prim!
*In a single prim object LINK_ROOT will not refer to the root prim!

Latest revision as of 17:09, 28 October 2023

Description

Constant: integer LINK_ROOT = 1;

The integer constant LINK_ROOT has the value 1

Targets the root prim in the linkset.

Caveats

  • In a single prim object LINK_ROOT will not refer to the root prim!
    • If your script needs to work in single and multiprim objects, instead of LINK_ROOT, use either (llGetLinkNumber() != 0) or (!!llGetLinkNumber())
    • Alternatively, LINK_THIS works in both single-prim and multiprim objects, assuming the script is inside the root prim and only needs to refer to itself.


Related Articles

Deep Notes

Search JIRA for related Issues

Signature

integer LINK_ROOT = 1;