You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This introduced a bug in the XRI3 migration, because the old base class (ActionBasedController) read this value from the action every frame. The new base class (TrackedPoseDriver) only reads the events when the action state changes.
/// Expose the tracking state for the hand pose driver, to allow <see cref="TrackedPoseDriverExtensions"/> to query it.
39
40
/// </summary>
40
41
/// <remarks>
41
42
/// Avoid exposing this publicly as this <see cref="HandPoseDriver"/> is a workaround solution to support hand tracking on devices without interaction profiles.
/// Get if the last pose set was from a polyfill device pose. That is, if the last pose originated from the <see cref="XRSubsystemHelpers.HandsAggregator "/>.
47
48
/// </summary>
48
49
internalboolIsPolyfillDevicePose{get;privateset;}
49
50
50
51
#region Serialized Fields
52
+
51
53
[Header("Hand Pose Driver Settings")]
52
54
53
55
[SerializeField,Tooltip("The XRNode associated with this Hand Controller. Expected to be XRNode.LeftHand or XRNode.RightHand.")]
@@ -58,9 +60,11 @@ public class HandPoseDriver : TrackedPoseDriver
58
60
/// </summary>
59
61
/// <remarks>Expected to be XRNode.LeftHand or XRNode.RightHand.</remarks>
0 commit comments