ConstructibleComponent Struct - ConstructibleObject

Revision as of 23:46, 15 July 2024 by Ptmc (talk | contribs) (Form ended up pointing to a Glossary.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

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

SyntaxEdit

Struct ConstructibleComponent
	Form Object
	int Count
EndStruct

MembersEdit


ExamplesEdit

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

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

See AlsoEdit