Difference between revisions of "GetObjectComponentCount - MiscObject"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
imported>Qazaaq
m (fixed wiki link)
Line 24: Line 24:


== See Also ==
== See Also ==
*[[MiscObject]]
*[[MiscItem]]

Revision as of 22:17, 8 October 2016

Member of: MiscObject Script

Returns the number of the given Component this form has.

Syntax

int Function GetObjectComponentCount( Component akComponent ) native

Parameters

  • akComponent - The component you are interested in.

Return Value

The number of the given component this form has.

Examples

if item.GetObjectComponentCount( Screws ) > 1
  Debug.Trace("This item has too many screws.  The game is now unbalanced.")
endIf

See Also