Changeset 3851 in orxonox.OLD for orxonox/trunk/src/story_entities
- Timestamp:
- Apr 17, 2005, 1:21:59 PM (20 years ago)
- Location:
- orxonox/trunk/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/story_entities/world.cc
r3848 r3851 38 38 #include "track_manager.h" 39 39 #include "garbage_collector.h" 40 #include "simple_animation.h"41 40 #include "animation_player.h" 42 41 … … 161 160 TextEngine::getInstance()->flush(); 162 161 163 delete this->simpleAnimation;164 165 162 AnimationPlayer::getInstance()->debug(); 166 163 delete AnimationPlayer::getInstance(); // this should be at the end of the unloading sequence. … … 203 200 wi->init(this); 204 201 this->garbageCollector = GarbageCollector::getInstance(); 205 this->simpleAnimation = SimpleAnimation::getInstance();206 202 } 207 203 … … 935 931 this->localCamera->tick(this->dt); 936 932 this->garbageCollector->tick(seconds); 937 this->simpleAnimation->tick(seconds); 933 938 934 AnimationPlayer::getInstance()->tick(seconds); 939 935 } -
orxonox/trunk/src/story_entities/world.h
r3847 r3851 24 24 class Terrain; 25 25 class GarbageCollector; 26 class SimpleAnimation;27 26 class Text; 28 27 … … 116 115 GarbageCollector* garbageCollector; //!< reference to the garbage collector 117 116 118 SimpleAnimation* simpleAnimation; //!< reference to the SimpleAnimation object119 120 117 /* function for main-loop */ 121 118 void mainLoop ();
Note: See TracChangeset
for help on using the changeset viewer.