Difference between revisions of "AddArray - RefCollectionAlias"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
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...")
(No difference)

Revision as of 10:49, 3 December 2015

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