Changeset 1092
- Timestamp:
- Apr 17, 2008, 1:49:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/Orxonox.cc
r1089 r1092 447 447 448 448 // Iterate through all Tickables and call their tick(dt) function 449 for (Iterator<Tickable> it = ObjectList<Tickable>::start(); it; ) 450 { 451 (it)->tick((float)evt.timeSinceLastFrame * this->timefactor_); 452 it++; 453 } 449 for (Iterator<Tickable> it = ObjectList<Tickable>::start(); it; ++it) 450 it->tick((float)evt.timeSinceLastFrame * this->timefactor_); 454 451 455 452 // don't forget to call _fireFrameStarted in ogre to make sure
Note: See TracChangeset
for help on using the changeset viewer.