Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6619 in orxonox.OLD for trunk/src/story_entities


Ignore:
Timestamp:
Jan 19, 2006, 6:23:56 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: rendering without the ParticleEngine, so now we are FAST :)

Location:
trunk/src/story_entities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/game_world.cc

    r6512 r6619  
    4747#include "shell_command.h"
    4848
    49 #include "particle_engine.h"
    5049#include "graphics_engine.h"
    5150#include "event_handler.h"
     
    339338    this->dataTank->localCamera->tick(this->dtS);
    340339    AnimationPlayer::getInstance()->tick(this->dtS);
    341     ParticleEngine::getInstance()->tick(this->dtS);
    342340    PhysicsEngine::getInstance()->tick(this->dtS);
    343341
     
    414412  engine->draw(State::getObjectManager()->getObjectList(OM_GROUP_01));
    415413  engine->draw(State::getObjectManager()->getObjectList(OM_GROUP_01_PROJ));
    416   /* draws the particles */
    417   ParticleEngine::getInstance()->draw();
    418414
    419415  if( unlikely( this->showBV))
  • trunk/src/story_entities/game_world_data.cc

    r6434 r6619  
    4444#include "load_param.h"
    4545
    46 #include "particle_engine.h"
    4746#include "graphics_engine.h"
    4847#include "event_handler.h"
     
    115114  /* initialize some graphics engines and graphical elements */
    116115  AnimationPlayer::getInstance();
    117   ParticleEngine::getInstance();
    118116  PhysicsEngine::getInstance();
    119117}
     
    279277  LoadParamXML(root, "LightManager", LightManager::getInstance(), LightManager, loadParams);
    280278
    281   LoadParamXML(root, "ParticleEngine", ParticleEngine::getInstance(), ParticleEngine, loadParams);
     279//  LoadParamXML(root, "ParticleEngine", ParticleEngine::getInstance(), ParticleEngine, loadParams);
    282280  //LoadParamXML(root, "PhysicsEngine", PhysicsEngine::getInstance(), PhysicsEngine, loadParams);
    283281
     
    301299  /* delete some garphics and scene eingines */
    302300  delete LightManager::getInstance();
    303   delete ParticleEngine::getInstance();
    304301  delete AnimationPlayer::getInstance();
    305302  delete PhysicsEngine::getInstance();
Note: See TracChangeset for help on using the changeset viewer.