Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 3, 2008, 8:45:12 PM (16 years ago)
Author:
rgrieder
Message:
  • Actually set the Settings::showsGraphics and Settings::hasServer.
  • Forgot the timer calls in GSGraphics
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/orxonox/gamestates/GSLevel.cc

    r1694 r1696  
    3838#include "objects/Backlight.h"
    3939#include "objects/Tickable.h"
     40#include "tools/Timer.h"
    4041#include "tools/ParticleInterface.h"
    4142#include "Settings.h"
     
    115116        for (Iterator<Tickable> it = ObjectList<Tickable>::start(); it; ++it)
    116117            it->tick(time.getDeltaTime() * this->timeFactor_);
     118
     119        for (Iterator<TimerBase> it = ObjectList<TimerBase>::start(); it; ++it)
     120            it->tick(time);
    117121    }
    118122
Note: See TracChangeset for help on using the changeset viewer.