Home | History | Annotate | Download | only in helloworld

Lines Matching refs:inputManager

176     inputManager.addMapping("Left", new KeyTrigger(KeyInput.KEY_A));
177 inputManager.addMapping("Right", new KeyTrigger(KeyInput.KEY_D));
178 inputManager.addMapping("Up", new KeyTrigger(KeyInput.KEY_W));
179 inputManager.addMapping("Down", new KeyTrigger(KeyInput.KEY_S));
180 inputManager.addMapping("Jump", new KeyTrigger(KeyInput.KEY_SPACE));
181 inputManager.addListener(this, "Left");
182 inputManager.addListener(this, "Right");
183 inputManager.addListener(this, "Up");
184 inputManager.addListener(this, "Down");
185 inputManager.addListener(this, "Jump");