Difference between revisions of "ConstructibleComponent Struct - ConstructibleObject"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(description)
imported>Qazaaq
m (removed wiki link)
Line 1: Line 1:
'''F4SE Member of:''' [[ConstructibleObject Script]]
'''F4SE Member of:''' [[ConstructibleObject Script]]


A structure that holds information about a [[Constructible Object|Constructible Objects]] required item list.
A structure that holds information about a constructible object's required item list.


== Syntax ==
== Syntax ==

Revision as of 07:53, 18 October 2017

F4SE Member of: ConstructibleObject Script

A structure that holds information about a constructible object's required item list.

Syntax

Struct ConstructibleComponent
	Component Object
	int Count
EndStruct

Members


Examples

ConstructibleObject:ConstructibleComponent constructibleComponent = new ConstructibleObject:ConstructibleComponent
constructibleComponent.Object = c_Gold
constructibleComponent.Count = 100

Debug.Trace("Object: " + constructibleComponent.Object)
Debug.Trace("Count: " + constructibleComponent.Count)

See Also