OGRE
1.11.6
Object-Oriented Graphics Rendering Engine
|
Class representing a single particle instance. More...
#include <OgreParticle.h>
Public Types | |
enum | ParticleType { Visual, Emitter } |
Type of particle. More... | |
Public Member Functions | |
Particle () | |
void | _notifyOwner (ParticleSystem *owner) |
Internal method for notifying the particle of it's owner. More... | |
void | _notifyVisualData (ParticleVisualData *vis) |
Internal method for notifying the particle of it's optional visual data. More... | |
Real | getOwnHeight (void) const |
Retrieves the particle's personal width, if hasOwnDimensions is true. More... | |
Real | getOwnWidth (void) const |
Retrieves the particle's personal width, if hasOwnDimensions is true. More... | |
const Radian & | getRotation (void) const |
ParticleVisualData * | getVisualData (void) const |
Get the optional visual data associated with the class. More... | |
bool | hasOwnDimensions (void) const |
Returns true if this particle deviates from the ParticleSystem's default dimensions (i.e. More... | |
void | resetDimensions (void) |
Utility method to reset this particle. More... | |
void | setDimensions (Real width, Real height) |
Sets the width and height for this particle. More... | |
void | setRotation (const Radian &rad) |
Sets the current rotation. More... | |
Public Attributes | |
ColourValue | mColour |
Current colour. More... | |
Vector3 | mDirection |
Direction (and speed) More... | |
Real | mHeight |
Personal height if mOwnDimensions == true. More... | |
bool | mOwnDimensions |
Does this particle have it's own dimensions? More... | |
ParticleType | mParticleType |
Determines the type of particle. More... | |
Vector3 | mPosition |
World position. More... | |
Radian | mRotation |
Current rotation value. More... | |
Radian | mRotationSpeed |
Speed of rotation in radians/sec. More... | |
Real | mTimeToLive |
Time to live, number of seconds left of particles natural life. More... | |
Real | mTotalTimeToLive |
Total Time to live, number of seconds of particles natural life. More... | |
Real | mWidth |
Personal width if mOwnDimensions == true. More... | |
Class representing a single particle instance.
|
inline |
Sets the width and height for this particle.
|
inline |
Returns true if this particle deviates from the ParticleSystem's default dimensions (i.e.
if the particle::setDimensions method has been called for this instance).
|
inline |
Retrieves the particle's personal width, if hasOwnDimensions is true.
|
inline |
Retrieves the particle's personal width, if hasOwnDimensions is true.
void Ogre::Particle::setRotation | ( | const Radian & | rad | ) |
Sets the current rotation.
|
inline |
void Ogre::Particle::_notifyOwner | ( | ParticleSystem * | owner | ) |
Internal method for notifying the particle of it's owner.
|
inline |
Internal method for notifying the particle of it's optional visual data.
|
inline |
Get the optional visual data associated with the class.
void Ogre::Particle::resetDimensions | ( | void | ) |
Utility method to reset this particle.
Referenced by Ogre::ParticleEmitter::_initParticle().
bool Ogre::Particle::mOwnDimensions |
Does this particle have it's own dimensions?
Real Ogre::Particle::mWidth |
Personal width if mOwnDimensions == true.
Real Ogre::Particle::mHeight |
Personal height if mOwnDimensions == true.
Radian Ogre::Particle::mRotation |
Current rotation value.
Vector3 Ogre::Particle::mPosition |
World position.
Vector3 Ogre::Particle::mDirection |
Direction (and speed)
ColourValue Ogre::Particle::mColour |
Current colour.
Real Ogre::Particle::mTimeToLive |
Time to live, number of seconds left of particles natural life.
Real Ogre::Particle::mTotalTimeToLive |
Total Time to live, number of seconds of particles natural life.
Radian Ogre::Particle::mRotationSpeed |
Speed of rotation in radians/sec.
ParticleType Ogre::Particle::mParticleType |
Determines the type of particle.