EnableAll - RefCollectionAlias

From the Fallout4 CreationKit Wiki
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)
Jump to navigation Jump to search

Member of: RefCollectionAlias Script

Calls EnableNoWait on all the references in the collection.

Syntax[edit | edit source]

Function EnableAll(bool bFadeIn = false)

Parameters[edit | edit source]

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

Return Value[edit | edit source]

None.

Examples[edit | edit source]

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


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

Notes[edit | edit source]

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

See Also[edit | edit source]