EnableLinkChain - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script
This function enables all the linked refs, linked in a chain, from this reference.
Syntax[edit | edit source]
Function EnableLinkChain(Keyword apKeyword = None)
ObjectReference CurrentLink = GetLinkedRef(apKeyword)
While CurrentLink
CurrentLink.Enable()
CurrentLink = CurrentLink.GetLinkedRef(apKeyword)
endWhile
endFunction
Parameters[edit | edit source]
- apKeyword: Keyword to check ref link against (see GetLinkedRef.)
- Default: None
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Enable every ref linked to startRef in a chain
startRef.EnableLinkChain()
; Enable every ref linked to startRef using the special keyword
startRef.EnableLinkChain(SpecialKeyword)
Notes[edit | edit source]
Do not use this on a link chain that is linked in a loop or it will cause an endless loop.