imported>Mysticporo Created page with "<languages></languages> <translate> <!--T:1--> {{stub}} {{Infobox Component |Image=ValueField`1Component.png |Name=Value Field`1 }} <!--T:2--> == Fields == {{Table ComponentF..." |
Added overview and use examples for valuefield, as well as reasons to use other nodes |
||
Line 1: | Line 1: | ||
The ValueField component contains a single field of a specific datatype that is selected when the component is attached. | |||
{{Infobox Component | {{Infobox Component | ||
|Image=ValueField`1Component.png | |Image=ValueField`1Component.png | ||
Line 16: | Line 13: | ||
<!--T:3--> | <!--T:3--> | ||
== Usage == | == Usage == | ||
The ValueField component can be used to store a single value on a slot that can be edited from the [[Scene Inspector|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 [[DynamicValueVariable`1 (Component)|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 [[DataModelStore]] node.<!--T:4--> | |||
== Examples == | == Examples == | ||
[[File:Value Field Demo.png|thumb|A ValueField<floatQ> being used as the input of a ValueCopy<floatQ>]] | |||
A ValueField could be used when another [[Components|component]] requires an input of an external value. <!--T:5--> | |||
== Related Components == | == Related Components == | ||
</translate> | </translate> |
Revision as of 05:09, 13 January 2024
The ValueField component contains a single field of a specific datatype that is selected when the component is attached.
Component image
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. |
Value
|
Int |
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 DataModelStore node.
Examples
A ValueField could be used when another component requires an input of an external value.
Related Components
</translate>