Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2009, 8:37:42 PM (16 years ago)
Author:
rgrieder
Message:

Clean up in files in src/orxonox and src/orxonox/tools.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/tools/ParticleInterface.h

    r2896 r3131  
    3434#include <string>
    3535#include <OgrePrerequisites.h>
    36 
    37 #include "core/OrxonoxClass.h"
    38 #include "util/Math.h"
    3936#include "tools/TimeFactorListener.h"
    4037
     
    5249            virtual ~ParticleInterface();
    5350
    54             inline Ogre::ParticleSystem* getParticleSystem() const
     51            inline Ogre::ParticleSystem* getParticleSystem()
    5552                { return this->particleSystem_; }
    5653
     
    6259
    6360            Ogre::ParticleAffector* addAffector(const std::string& name);
    64             Ogre::ParticleAffector* getAffector(unsigned int affectorNr) const;
     61            Ogre::ParticleAffector* getAffector(unsigned int affectorNr);
    6562            void removeAffector(unsigned int affectorNr);
    6663            void removeAllAffectors();
     
    9592            void updateVisibility();
    9693
    97             static ParticleInterface* currentParticleInterface_s;
    98             static unsigned int       counter_s;
    99 
    10094            Ogre::ParticleSystem*     particleSystem_;
     95            Ogre::SceneManager*       scenemanager_;
    10196            bool                      bVisible_;
    10297            bool                      bEnabled_;
     
    10499            unsigned int              detaillevel_;     //!< Detail level of this particle effect (0: off, 1: low, 2: normal, 3: high)
    105100            float                     speedFactor_;
    106             Ogre::SceneManager*       scenemanager_;
     101
     102            static ParticleInterface* currentParticleInterface_s;
     103            static unsigned int       counter_s;
    107104    };
    108105}
Note: See TracChangeset for help on using the changeset viewer.