Bugs in InputAxesDelta
Closed this issue · 1 comments
ahickey commented
getDelta for LEFT_THUMBSTICK_X is returning the delta of getRXDelta()
public float getDelta(final XInputAxis axis) {
switch (axis) {
case LEFT_THUMBSTICK_X:
return getRXDelta();
getRawDelta has the same bug
public int getRawDelta(final XInputAxis axis) {
switch (axis) {
case LEFT_THUMBSTICK_X:
return getRXRawDelta();
StrikerX3 commented
Good catch. Fixing those right away.