EnableLinkChain - ObjectReference
Revision as of 14:26, 8 August 2013 by imported>Plplecuyer (→Syntax)
Member of: ObjectReference Script
This function enables all the linked refs, linked in a chain, from this reference (but not this reference). Does not wait for all the references to fade in or enable before returning.
SyntaxEdit
Function EnableLinkChain(Keyword apKeyword = None, bool abFadeIn = false) native
ParametersEdit
- apKeyword: Keyword to check ref link against (see GetLinkedRef.)
- Default: None
- abFadeIn: If true, will fade in the references. Otherwise they will pop in.
- Default: False
Return ValueEdit
None.
ExamplesEdit
; Enable every ref linked to startRef in a chain
startRef.EnableLinkChain()
; Enable every ref linked to startRef using the special keyword
startRef.EnableLinkChain(SpecialKeyword)