Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't.
Value
T
The value this component is storing.
Usage
The ValueField component can be used to store a single value on a slot that can be edited from the inspector, or with other components and ProtoFlux. However, in cases where you want to be able to dynamically reference the value instead of directly referencing it, you may be better off using a dynamic variable, and in use cases where you want to easily reference and edit a value within a ProtoFlux script while still exposing that value to the data model, you may want to use the Data Model Store node.
Examples
A ValueField<floatQ> being used as the input of a ValueCopy<floatQ>
A ValueField could be used when another component requires an input of an external value.