We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 073fa13 commit 3139707Copy full SHA for 3139707
Packages/Tracking/Core/Runtime/Scripts/XRHandsSubsystem/XRHandsInputActionUpdater.cs
@@ -67,6 +67,20 @@ private static void Startup()
67
currentSubsystem.updatedHands -= UpdateHands;
68
currentSubsystem.updatedHands += UpdateHands;
69
70
+ // Create meta hands if required
71
+ if (ultraleapSettings.updateMetaInputSystem)
72
+ {
73
+ if (MetaAimHand.left == null)
74
75
+ MetaAimHand.left = MetaAimHand.CreateHand(UnityEngine.XR.InputDeviceCharacteristics.Left);
76
+ }
77
+ if (MetaAimHand.right == null)
78
79
+ MetaAimHand.right = MetaAimHand.CreateHand(UnityEngine.XR.InputDeviceCharacteristics.Right);
80
81
82
+
83
84
SetupDefaultStateGetters();
85
86
OnDeviceAdded();
0 commit comments