DisableAll - RefCollectionAlias

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