Component:ValueFieldProxy

From Resonite Wiki
Revision as of 18:46, 22 May 2025 by 989onan (talk | contribs) (TODO: the "thing" is not a good name for the objects grabbed from inspector value/ref fields)
Component image 
Value Field Proxy`1 component as seen in the Scene Inspector

The Value Field Proxy component is used to make a field accessible via grabbing when paired with a grabbable. See #Usage for more info.

Fields

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. Some components stop their functionality when this field is disabled, but some don't.
Source IField`1<T> The field to relay into the grabbable behavior this component has when paired with a grabbable.

Usage

Used to make a grabbable object able to put a value into a field. This can be done by clicking with or letting go of the object while holding it and pointing at a collider that can recieve it. Examples of recievers include inspector fields, text fields, and number fields. These objects achieve this by using a ValueReceiver.

Examples

The grabbable behavior of inspector value that allow grabbing values and dropping them into other inspectors. The thing that is acquired by grabbing uses this component.

See Also