Difference between revisions of "GetMiscComponents - MiscObject"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(added f4se member)
 
imported>Jimhsu
(Added return value and example.)
Line 14: Line 14:


== Return Value ==
== Return Value ==
*Placeholder Description.
An array of MiscComponent structs.


== Examples ==
== Examples ==
<source lang="papyrus">
<source lang="papyrus">
; Placeholder Code.
MiscObject:MiscComponent[] Components = new MiscObject:MiscComponent[10]
Components = akTheMod.GetMiscComponents()
</source>
</source>



Revision as of 00:45, 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 = akTheMod.GetMiscComponents()

See Also