Component:FingerReferencePoseSource: Difference between revisions

From Resonite Wiki
add info
Automated: update SyncDelegates
 
(2 intermediate revisions by the same user not shown)
Line 14: Line 14:


== Sync Delegates ==
== Sync Delegates ==
{{Table ComponentTriggers  
{{Table ComponentTriggers
|AssignFromBipedRig()|[[Type:Delegate|Delegate]]&lt;[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: data&gt;| Finds a biped rig Component above this component and uses the found Finger bones to fill <code>Bones</code>.
|AssignFromBipedRig:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Finds a biped rig Component above this component and uses the found Finger bones to fill <code>Bones</code>.
|CaptureReference()|[[Type:Delegate|Delegate]]&lt;[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData, [[Type:IFingerPoseSource|IFingerPoseSource]] field&gt;| Captures the data from the specified [[Type:IFingerPoseSource|IFingerPoseSource]] and sets this component's data with it.
|CaptureReference:[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]&lt;[[Component:ReferenceField`1|ReferenceField`1]]&lt;[[Type:IFingerPoseSourceComponent|IFingerPoseSourceComponent]]&gt;&gt;|[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]&lt;[[Component:ReferenceField`1|ReferenceField`1]]&lt;[[Type:IFingerPoseSourceComponent|IFingerPoseSourceComponent]]&gt;&gt;|true| Captures the data from the specified [[Type:IFingerPoseSource|IFingerPoseSource]] and sets this component's data with it.
|CaptureMyLeftHand()|[[Type:Delegate|Delegate]]&lt;[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: data&gt;| Captures the data from the Left hand of the user that pressed the button and sets this component's data with it.
|CaptureMyLeftHand:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Captures the data from the Left hand of the user that pressed the button and sets this component's data with it.
|CaptureMyRightHand()|[[Type:Delegate|Delegate]]&lt;[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: data&gt;| Captures the data from the right hand of the user that pressed the button and sets this component's data with it.
|CaptureMyRightHand:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Captures the data from the right hand of the user that pressed the button and sets this component's data with it.
|GenerateDebugVisual()|[[Type:Delegate|Delegate]]&lt;[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData&gt;| Generates a Debug visual and Assigns its bones to any item in <code>Bones</code> that are missing slots and adds any finger segments that are missing entries in <code>Bones</code>
|GenerateDebugVisual:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Generates a Debug visual and Assigns its bones to any item in <code>Bones</code> that are missing slots and adds any finger segments that are missing entries in <code>Bones</code>
|ClearDebugVisual()|[[Type:Delegate|Delegate]]&lt;[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData&gt;| Clears the debug visuals of the hand. (WARNING: visuals may be Referenced by <code>Bones</code>
|ClearDebugVisual:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Clears the debug visuals of the hand. (WARNING: visuals may be Referenced by <code>Bones</code>
|GenerateStaticFingerPoseCode()|[[Type:Delegate|Delegate]]&lt;[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData&gt;| Generates C# code for making a static Pose. Possibly was added by [[User:Frooxius|Frooxius]] as a way to make code for the poses like fist and point in the defaults quickly.
|GenerateStaticFingerPoseCode:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Generates C# code for making a static Pose. Possibly was added by [[User:Frooxius|Frooxius]] as a way to make code for the poses like fist and point in the defaults quickly.
|||
}}
}}



Latest revision as of 06:31, 17 March 2025

Component image 
File:FingerReferencePoseSourceComponent.png
Finger Reference Pose Source component as seen in the Scene Inspector

The FingerReferencePoseSource component is used to read and generate Pose data from the user or its already created bone hiearchy Template. The Slots used in the Bones list need to not be null. Every time the Pose data is read from this component as a Finger Pose Source, the current positions and rotations of the slots in Bones are used. This component in itself is a IFingerPoseSourceComponent.

For more information on finger pose sources, please see Finger Posing System.


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.
Bones direct SyncRefDictionary`2<BodyNode, Slot> A list of bones mapped to Fingers to use as the Finger pose source data for this component. The Fingers need to be in the default hand structure.

Sync Delegates

Triggers
Method Name Method type and Arguments. Is the method hidden? Description
AssignFromBipedRig:ButtonEventHandler ButtonEventHandler Finds a biped rig Component above this component and uses the found Finger bones to fill Bones.
CaptureReference:ButtonEventHandler`1<ReferenceField`1<IFingerPoseSourceComponent>> ButtonEventHandler`1<ReferenceField`1<IFingerPoseSourceComponent>> Captures the data from the specified IFingerPoseSource and sets this component's data with it.
CaptureMyLeftHand:ButtonEventHandler ButtonEventHandler Captures the data from the Left hand of the user that pressed the button and sets this component's data with it.
CaptureMyRightHand:ButtonEventHandler ButtonEventHandler Captures the data from the right hand of the user that pressed the button and sets this component's data with it.
GenerateDebugVisual:ButtonEventHandler ButtonEventHandler Generates a Debug visual and Assigns its bones to any item in Bones that are missing slots and adds any finger segments that are missing entries in Bones
ClearDebugVisual:ButtonEventHandler ButtonEventHandler Clears the debug visuals of the hand. (WARNING: visuals may be Referenced by Bones
GenerateStaticFingerPoseCode:ButtonEventHandler ButtonEventHandler Generates C# code for making a static Pose. Possibly was added by Frooxius as a way to make code for the poses like fist and point in the defaults quickly.

Usage

Attach to a slot and use either the generate visuals button or assign from biped rig to make a reference armature. Then, it can either be set from the current hand pose of the user (useful for Index Controller users) or can be adjusted manually. The component can then be used as a IFingerPoseSourceComponent.

Examples

Finger pose reference Frooxius video

See Also