Difference between revisions of "GetMiscComponents - MiscObject"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Jimhsu
(Added return value and example.)
imported>Jimhsu
m
Line 19: Line 19:
<source lang="papyrus">
<source lang="papyrus">
MiscObject:MiscComponent[] Components = new MiscObject:MiscComponent[10]
MiscObject:MiscComponent[] Components = new MiscObject:MiscComponent[10]
Components = akTheMod.GetMiscComponents()
Components = MyMiscObject.GetMiscComponents()
</source>
</source>



Revision as of 00:47, 21 November 2018

This article has been flagged as incomplete.
Please help improve the wiki by learning how to contribute.

F4SE Member of: MiscObject Script
Requires F4SE version 0.4.2 or higher.

Placeholder Description.

Syntax

MiscComponent[] Function GetMiscComponents() Native

Parameters

  • None

Return Value

An array of MiscComponent structs.

Examples

MiscObject:MiscComponent[] Components = new MiscObject:MiscComponent[10]
Components = MyMiscObject.GetMiscComponents()

See Also