DisableAll - RefCollectionAlias

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

Member of: RefCollectionAlias Script

Calls DisableNoWait on all the references in the collection.

SyntaxEdit

Function DisableAll(bool bFadeOut = false)

ParametersEdit

  • bFadeOut: Whether to fade out or not
    • Default: False

Return ValueEdit

None.

ExamplesEdit

; Disable all the items in the collection
Stage1Items.DisableAll()


; Disable all the items with fading
Ghosts.DisableAll(true)

NotesEdit

Because this uses DisableNoWait, the references will not necessarily have faded or been disabled by the time this function returns.

See AlsoEdit