Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 29, 2008, 12:15:08 AM (16 years ago)
Author:
rgrieder
Message:
  • InGameConsole: - Tickable —> TickableReal (cursor now blinks independently of timeFactor_)
    • made console scroll down speed independent of frame rate
  • InputManager: - COUT(1) —> COUT(0)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/src/orxonox/console/InGameConsole.cc

    r1455 r1468  
    299299        {
    300300            float top = this->consoleOverlayContainer_->getTop();
     301            float timePassed = scrollTimer_;
    301302            this->scrollTimer_ = 0;
    302303            if (this->scroll_ != 0)
    303304            {
    304305                // scroll
    305                 top = top + 0.02 * this->scroll_;
     306                top = top + timePassed * this->scroll_;
    306307                this->consoleOverlayContainer_->setTop(top);
    307308            }
Note: See TracChangeset for help on using the changeset viewer.