Home | History | Annotate | Download | only in controls

Lines Matching defs:joyId

39     private final int joyId, axisId;
46 public JoyAxisTrigger(int joyId, int axisId, boolean negative) {
47 this.joyId = joyId;
52 public static int joyAxisHash(int joyId, int joyAxis, boolean negative){
54 return (2048 * joyId) | (negative ? 1280 : 1024) | (joyAxis & 0xff);
62 return joyId;
70 return "JoyAxis[joyId="+joyId+", axisId="+axisId+", neg="+negative+"]";
74 return joyAxisHash(joyId, axisId, negative);