Changeset 6619 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Jan 19, 2006, 6:23:56 PM (19 years ago)
- Location:
- trunk/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/game_world.cc
r6512 r6619 47 47 #include "shell_command.h" 48 48 49 #include "particle_engine.h"50 49 #include "graphics_engine.h" 51 50 #include "event_handler.h" … … 339 338 this->dataTank->localCamera->tick(this->dtS); 340 339 AnimationPlayer::getInstance()->tick(this->dtS); 341 ParticleEngine::getInstance()->tick(this->dtS);342 340 PhysicsEngine::getInstance()->tick(this->dtS); 343 341 … … 414 412 engine->draw(State::getObjectManager()->getObjectList(OM_GROUP_01)); 415 413 engine->draw(State::getObjectManager()->getObjectList(OM_GROUP_01_PROJ)); 416 /* draws the particles */417 ParticleEngine::getInstance()->draw();418 414 419 415 if( unlikely( this->showBV)) -
trunk/src/story_entities/game_world_data.cc
r6434 r6619 44 44 #include "load_param.h" 45 45 46 #include "particle_engine.h"47 46 #include "graphics_engine.h" 48 47 #include "event_handler.h" … … 115 114 /* initialize some graphics engines and graphical elements */ 116 115 AnimationPlayer::getInstance(); 117 ParticleEngine::getInstance();118 116 PhysicsEngine::getInstance(); 119 117 } … … 279 277 LoadParamXML(root, "LightManager", LightManager::getInstance(), LightManager, loadParams); 280 278 281 LoadParamXML(root, "ParticleEngine", ParticleEngine::getInstance(), ParticleEngine, loadParams);279 // LoadParamXML(root, "ParticleEngine", ParticleEngine::getInstance(), ParticleEngine, loadParams); 282 280 //LoadParamXML(root, "PhysicsEngine", PhysicsEngine::getInstance(), PhysicsEngine, loadParams); 283 281 … … 301 299 /* delete some garphics and scene eingines */ 302 300 delete LightManager::getInstance(); 303 delete ParticleEngine::getInstance();304 301 delete AnimationPlayer::getInstance(); 305 302 delete PhysicsEngine::getInstance();
Note: See TracChangeset
for help on using the changeset viewer.