Changeset 2814 for code/branches/gui/src/orxonox
- Timestamp:
- Mar 21, 2009, 5:30:16 PM (16 years ago)
- Location:
- code/branches/gui/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/orxonox/gamestates/GSLevel.cc
r2801 r2814 82 82 if (Core::showsGraphics()) 83 83 { 84 inputState_ = InputManager::getInstance().createInputState<SimpleInputState>("game" , 20);84 inputState_ = InputManager::getInstance().createInputState<SimpleInputState>("game"); 85 85 keyBinder_ = new KeyBinder(); 86 86 keyBinder_->loadBindings("keybindings.ini"); -
code/branches/gui/src/orxonox/gui/GUIManager.cc
r2808 r2814 167 167 168 168 // register us as input handler 169 SimpleInputState* state = InputManager::getInstance().createInputState<SimpleInputState>("gui" , 30);169 SimpleInputState* state = InputManager::getInstance().createInputState<SimpleInputState>("gui"); 170 170 state->setHandler(this); 171 171 state->setJoyStickHandler(&InputManager::EMPTY_HANDLER); -
code/branches/gui/src/orxonox/overlays/console/InGameConsole.cc
r2801 r2814 173 173 { 174 174 // create the corresponding input state 175 inputState_ = InputManager::getInstance().createInputState<SimpleInputState>("console", 40);175 inputState_ = InputManager::getInstance().createInputState<SimpleInputState>("console", InputStatePriority::Console); 176 176 inputState_->setKeyHandler(Shell::getInstance().getInputBuffer()); 177 177 bHidesAllInputChanged();
Note: See TracChangeset
for help on using the changeset viewer.