TryToEnableNoWait - ReferenceAlias

From the CreationKit Wiki
Revision as of 13:44, 26 October 2011 by imported>Jlundin (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: ReferenceAlias Script

This is a convenient way to enable a reference (without waiting on it to finish enabling) in an alias without calling GetReference() on it. It's mostly useful in cases where you have lots of aliases that may or may not be filled and you want to call EnableNoWait() on them without having to test for a reference being present first.

Syntax

bool Function TryToEnableNoWait()

Parameters

None

Return Value

True if the object was requested to enable, false if no object was there to be enabled.

Examples

; Attempt to enable the cool thing without waiting on it to finish
CoolAlias.TryToEnableNoWait()

See Also