AddRefCollection - RefCollectionAlias

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

Member of: RefCollectionAlias Script

Adds the contents of the passed-in collection alias to this one.

Syntax

Function AddRefCollection(RefCollectionAlias refCollectionAliasToAdd)

Parameters

  • refCollectionAliasToAdd: The alias whose contents should be added to ours

Return Value

None.

Examples

; Merge the two aliases
Collection1.AddRefCollection(Collection2)

See Also