Lines Matching defs:inputManager
166 this.inputManager.addMapping("Lefts", new KeyTrigger(KeyInput.KEY_A));
167 this.inputManager.addMapping("Rights", new KeyTrigger(KeyInput.KEY_D));
168 this.inputManager.addMapping("Ups", new KeyTrigger(KeyInput.KEY_W));
169 this.inputManager.addMapping("Downs", new KeyTrigger(KeyInput.KEY_S));
170 this.inputManager.addMapping("Jumps", new KeyTrigger(KeyInput.KEY_SPACE));
171 this.inputManager.addListener(this.actionListener, "Lefts");
172 this.inputManager.addListener(this.actionListener, "Rights");
173 this.inputManager.addListener(this.actionListener, "Ups");
174 this.inputManager.addListener(this.actionListener, "Downs");
175 this.inputManager.addListener(this.actionListener, "Jumps");