Component:EyeTrackingStreamManager: Difference between revisions

From Resonite Wiki
fix page
Automated: update Fields
 
Line 16: Line 16:
|ConvergenceDistance|'''[[Type:ValueStream`1|ValueStream`1]]<[[Type:Float|Float]]>'''|TypeAdv1=true| The eye distance data from the headset.
|ConvergenceDistance|'''[[Type:ValueStream`1|ValueStream`1]]<[[Type:Float|Float]]>'''|TypeAdv1=true| The eye distance data from the headset.
|IsEyeTrackingActive|'''[[Type:ValueStream`1|ValueStream`1]]<[[Type:Bool|Bool]]>'''|TypeAdv2=true| Returns true if the eyes are being tracked from the headset.
|IsEyeTrackingActive|'''[[Type:ValueStream`1|ValueStream`1]]<[[Type:Bool|Bool]]>'''|TypeAdv2=true| Returns true if the eyes are being tracked from the headset.
|LeftEyeStreams|{{RootFieldType|(nested)|[[#EyeStreams|EyeStreams]]}}|TypeAdv3=true| A set of fields for the left eye.
|LeftEyeStreams|{{RootFieldType|(nested)|[[#EyeStreams|EyeTrackingStreamManager.EyeStreams]]}}|TypeAdv3=true| A set of fields for the left eye.
|RightEyeStreams|{{RootFieldType|(nested)|[[#EyeStreams|EyeStreams]]}}|TypeAdv4=true|  A set of fields for the right eye.
|RightEyeStreams|{{RootFieldType|(nested)|[[#EyeStreams|EyeTrackingStreamManager.EyeStreams]]}}|TypeAdv4=true|  A set of fields for the right eye.
}}
}}



Latest revision as of 06:01, 17 March 2025

Component image 
EyeTrackingStreamManager component as seen in the Scene Inspector


The EyeTrackingStreamManager component uses streaming data from the ValueStream data type (seen in the user Inspector) to control the left and right eyes on a user's avatar.

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.
User User The focused user to get streaming data from.
ConvergenceDistance ValueStream`1<Float> The eye distance data from the headset.
IsEyeTrackingActive ValueStream`1<Bool> Returns true if the eyes are being tracked from the headset.
LeftEyeStreams direct EyeTrackingStreamManager.EyeStreams A set of fields for the left eye.
RightEyeStreams direct EyeTrackingStreamManager.EyeStreams A set of fields for the right eye.

EyeStreams

Fields
Name Type Description
IsTracking ValueStream`1<Bool> Returns if this eye is tracking.
Position ValueStream`1<Float3> Returns the position of the eye.
Direction ValueStream`1<Float3> Returns where the eye is looking.
Openness ValueStream`1<Float> Returns how open the eye is.
Widen ValueStream`1<Float> Returns how wide the eye is.
Squeeze ValueStream`1<Float> Returns how squeezed the eye is.
Frown ValueStream`1<Float> Returns if the eye is frowning.
InnerBrowVertical ValueStream`1<Float> Returns the inner brow data.
OuterBrowVertical ValueStream`1<Float> Returns the outer brow data.
PupilDiameter ValueStream`1<Float> Returns the pupil diameter.

Usage

Used for Eye Tracking.

Examples

See Also