GetNthLinkedRef - ObjectReference

Revision as of 17:52, 21 October 2011 by imported>Jlundin
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: ObjectReference Script

Gets the Nth linked ref from this object.

SyntaxEdit

ObjectReference Function GetNthLinkedRef(int aiLinkedRef) native

ParametersEdit

  • aiLinkedRef: The linked ref to get. 0 will return this object, 1 will return the same as GetLinkedRef with no keyword parameter, 2 will return essentially "GetLinkedRef().GetLinkedRef()", and so on.

Return ValueEdit

The Nth linked ref from this object.

ExamplesEdit

; Assume Item3 is the linked ref of Item2, which is the linked ref of Item1
ObjectReference linkedRef1 = Item1.GetNthLinkedRef(0) ; Returns Item1
ObjectReference linkedRef2 = Item1.GetNthLinkedRef(1) ; Returns Item2
ObjectReference linkedRef3 = Item1.GetNthLinkedRef(2) ; Returns Item3

See AlsoEdit