AddArray - RefCollectionAlias

From the Fallout4 CreationKit Wiki
Revision as of 10:49, 3 December 2015 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus '''Member of:''' RefCollectionAlias Script Adds the contents of the array to this collection. == Syntax == <source lang="papyrus...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: RefCollectionAlias Script

Adds the contents of the array to this collection.

Syntax

Function AddArray(ObjectReference[] refArrayToAdd)

Parameters

  • refArrayToAdd: The array whose contents should be added

Return Value

None.

Examples

; Add the array to the collection
Ghosts.AddArray(EvenMoreGhosts)

See Also