EnableAll - RefCollectionAlias
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.