ConstructibleComponent Struct - ConstructibleObject
Revision as of 06:53, 18 October 2017 by imported>Qazaaq (removed wiki link)
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
- Object: The required Component for a Constructible Object.
- Count: The amount of the component that is required.
Examples
ConstructibleObject:ConstructibleComponent constructibleComponent = new ConstructibleObject:ConstructibleComponent
constructibleComponent.Object = c_Gold
constructibleComponent.Count = 100
Debug.Trace("Object: " + constructibleComponent.Object)
Debug.Trace("Count: " + constructibleComponent.Count)