Quote:
Originally Posted by Signet
The method summary of getRawAxis() in Joystick links to this source code:
Code:
double result;
if (value < 0) {
result = ((double) value) / 128.0;
} else {
result = ((double) value) / 127.0;
}
}
|
Interesting. I wonder if positive joystick values are expanded (more sensitive) than negative ones looking at this code.