Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 13, 2005, 9:04:50 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/particleEngine: implemented sparks

File:
1 edited

Legend:

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

    r4129 r4173  
    251251/**
    252252   \brief draws all the systems and their Particles.
    253 */
    254 void ParticleEngine::draw(void)
     253   \param dt the time passed in seconds (since the last Frame)
     254*/
     255void ParticleEngine::draw(float dt)
    255256{
    256257  tIterator<ParticleSystem>* tmpIt = systemList->getIterator();
     
    258259  while(tmpSys)
    259260    {
    260       tmpSys->draw();
     261      tmpSys->draw(dt);
    261262      tmpSys = tmpIt->nextElement();
    262263    }
Note: See TracChangeset for help on using the changeset viewer.