EnableAll - RefCollectionAlias

Member of: RefCollectionAlias Script

Calls EnableNoWait on all the references in the collection.

SyntaxEdit

Function EnableAll(bool bFadeIn = false)

ParametersEdit

  • bFadeIn: Whether to fade in or not
    • Default: False

Return ValueEdit

None.

ExamplesEdit

; Enable all the items in the collection
HiddenGems.EnableAll()


; Enable all the items with fading
Ghosts.EnableAll(true)

NotesEdit

Because this uses EnableNoWait, the references will not necessarily have their 3d loaded or even be enabled by the time this function returns.

See AlsoEdit