Allow the caller to override the axis' default dead

zone configured at startup.
cleanup_build_scripts
Paul Speed 9 years ago
parent 2a2c71dadf
commit 46794e251d
  1. 8
      jme3-core/src/main/java/com/jme3/input/DefaultJoystickAxis.java

@ -135,6 +135,14 @@ public class DefaultJoystickAxis implements JoystickAxis {
return deadZone;
}
/**
* Sets/overrides the dead zone for this axis. This indicates that values
* within +/- deadZone should be ignored.
*/
public void setDeadZone( float f ) {
this.deadZone = f;
}
@Override
public String toString(){
return "JoystickAxis[name=" + name + ", parent=" + parent.getName() + ", id=" + axisIndex

Loading…
Cancel
Save