Changeset 1574 for code/branches/core3/src/orxonox/Orxonox.cc
- Timestamp:
- Jun 9, 2008, 4:35:38 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/orxonox/Orxonox.cc
r1567 r1574 462 462 Core::tick((float)evt.timeSinceLastFrame); 463 463 // Call those objects that need the real time 464 for (Iterator<TickableReal> it = ObjectList<TickableReal>:: start(); it; ++it)464 for (Iterator<TickableReal> it = ObjectList<TickableReal>::begin(); it; ++it) 465 465 it->tick((float)evt.timeSinceLastFrame); 466 466 // Call the scene objects 467 for (Iterator<Tickable> it = ObjectList<Tickable>:: start(); it; ++it)467 for (Iterator<Tickable> it = ObjectList<Tickable>::begin(); it; ++it) 468 468 it->tick((float)evt.timeSinceLastFrame * this->timefactor_); 469 469 //AudioManager::tick();
Note: See TracChangeset
for help on using the changeset viewer.