EnableAll - RefCollectionAlias
Revision as of 10: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...")
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.