Skip to content

Commit cac28c3

Browse files
committed
Fix Ability hand VR rotator streaming.
1 parent 36e9422 commit cac28c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ihmc-high-level-behaviors/src/libgdx/java/us/ihmc/rdx/ui/vr/RDXVRHandControl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ else if (skeleton.flFingerCurl(i) <= 0.85f)
126126
float newThumbOpposition = thumbOpposition.get(side) + side.negateIfRightSide(1.0f) * Math.signum(lateralJoystick) * THUMB_OPPOSITION_JOYSTICK_INCREMENT;
127127
newThumbOpposition = Math.max(0.0f, Math.min(newThumbOpposition, 1.0f));
128128
thumbOpposition.put(side, newThumbOpposition);
129-
handManager.getHand(side).sendFingerPosition(5, thumbOpposition.get(side));
129+
handManager.getHand(side).sendFingerPosition(5, 120.0f * thumbOpposition.get(side));
130130
}
131131
}
132132

0 commit comments

Comments
 (0)