Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2005, 2:05:21 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: PhysicsEngine is now aware of the existing fields and interfaces

File:
1 edited

Legend:

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

    r4349 r4394  
    2020};
    2121
    22 //! A default singleton class.
     22//! The physicsEngine handles and stores Systems and Emitters.
     23/**
     24   It is responsible for driving on the Particles (tick)
     25   It draw particles (draw)
     26   and it emitts particles into the system
     27*/
    2328class ParticleEngine : public BaseObject {
    2429
     
    4853 private:
    4954  ParticleEngine(void);
    50   static ParticleEngine* singletonRef;
     55  static ParticleEngine* singletonRef;        //!< The reference to the engine.
    5156
    52   tList<ParticleSystem>* systemList;
    53   tList<ParticleEmitter>* emitterList;
     57  tList<ParticleSystem>* systemList;          //!< A list of Systems handled by the ParticleEngine.
     58  tList<ParticleEmitter>* emitterList;        //!< A list of Emitters handled by the ParticleEngine.
    5459
    55   tList<ParticleConnection>* connectionList;
     60  tList<ParticleConnection>* connectionList;  //!< A list of Connections between Systems and Emitters.
    5661};
    5762
Note: See TracChangeset for help on using the changeset viewer.