EnableAll - RefCollectionAlias

Revision as of 11:27, 3 December 2015 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus '''Member of:''' RefCollectionAlias Script Calls EnableNoWait on all the references in the col...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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