Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 3, 2008, 12:20:36 AM (16 years ago)
Author:
rgrieder
Message:
  • moved Tickable to objects again
  • network, audio and core now have their own tick routine
  • Sequence is defined in Orxonox.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/input/src/core/input/InputManager.cc

    r1520 r1524  
    499499    @param dt Delta time
    500500  */
    501   void InputManager::tick(float dt)
     501  void InputManager::_tick(float dt)
    502502  {
    503503    if (state_ == IS_UNINIT)
     
    649649      activeHandlers_[iHandler].first->tickInput(dt, activeHandlers_[iHandler].second);
    650650  }
    651 
     651   
    652652  void InputManager::_completeCalibration()
    653653  {
     
    11411141  }
    11421142
     1143  void InputManager::tick(float dt)
     1144  {
     1145    _getSingleton()._tick(dt);
     1146  }
     1147
    11431148  // ###### KeyHandler ######
    11441149
Note: See TracChangeset for help on using the changeset viewer.