Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 28, 2005, 12:10:30 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: ParticleEngine now has a draw-function, that makes sense

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/particles/particle_engine.cc

    r4338 r4349  
    253253   \param dt the time passed in seconds (since the last Frame)
    254254*/
    255 void ParticleEngine::draw(float dt)
     255void ParticleEngine::draw() const
    256256{
    257257  tIterator<ParticleSystem>* tmpIt = systemList->getIterator();
     
    259259  while(tmpSys)
    260260    {
    261       tmpSys->draw(dt);
     261      tmpSys->draw();
    262262      tmpSys = tmpIt->nextElement();
    263263    }
Note: See TracChangeset for help on using the changeset viewer.