OGRE
1.11.6
Object-Oriented Graphics Rendering Engine
|
This plugin subclass of ParticleAffector allows you to alter the colour of particles. More...
#include <OgreColourFaderAffector.h>
Classes | |
class | CmdAlphaAdjust |
Command object for alpha adjust (see ParamCommand). More... | |
class | CmdBlueAdjust |
Command object for blue adjust (see ParamCommand). More... | |
class | CmdGreenAdjust |
Command object for green adjust (see ParamCommand). More... | |
class | CmdRedAdjust |
Command object for red adjust (see ParamCommand). More... | |
Public Member Functions | |
ColourFaderAffector (ParticleSystem *psys) | |
Default constructor. More... | |
void | _affectParticles (ParticleSystem *pSystem, Real timeElapsed) |
See ParticleAffector. More... | |
virtual void | _initParticle (Particle *pParticle) |
Method called to allow the affector to initialize all newly created particles in the system. More... | |
void | copyParametersTo (StringInterface *dest) const |
Method for copying this object's parameters to another object. More... | |
float | getAlphaAdjust (void) const |
Gets the alpha adjustment to be made per second to particles. More... | |
float | getBlueAdjust (void) const |
Gets the blue adjustment to be made per second to particles. More... | |
float | getGreenAdjust (void) const |
Gets the green adjustment to be made per second to particles. More... | |
ParamDictionary * | getParamDictionary (void) |
Retrieves the parameter dictionary for this class. More... | |
const ParamDictionary * | getParamDictionary (void) const |
String | getParameter (const String &name) const |
Generic parameter retrieval method. More... | |
const ParameterList & | getParameters (void) const |
Retrieves a list of parameters valid for this object. More... | |
float | getRedAdjust (void) const |
Gets the red adjustment to be made per second to particles. More... | |
const String & | getType (void) const |
Returns the name of the type of affector. More... | |
void | setAdjust (float red, float green, float blue, float alpha=0.0) |
Sets the colour adjustment to be made per second to particles. More... | |
void | setAlphaAdjust (float alpha) |
Sets the alpha adjustment to be made per second to particles. More... | |
void | setBlueAdjust (float blue) |
Sets the blue adjustment to be made per second to particles. More... | |
void | setGreenAdjust (float green) |
Sets the green adjustment to be made per second to particles. More... | |
bool | setParameter (const String &name, const String &value) |
Generic parameter setting method. More... | |
void | setParameterList (const NameValuePairList ¶mList) |
Generic multiple parameter setting method. More... | |
void | setRedAdjust (float red) |
Sets the red adjustment to be made per second to particles. More... | |
Static Public Member Functions | |
static void | cleanupDictionary () |
Cleans up the static 'msDictionary' required to reset Ogre, otherwise the containers are left with invalid pointers, which will lead to a crash as soon as one of the ResourceManager implementers (e.g. More... | |
Static Public Attributes | |
static CmdAlphaAdjust | msAlphaCmd |
static CmdBlueAdjust | msBlueCmd |
static CmdGreenAdjust | msGreenCmd |
static CmdRedAdjust | msRedCmd |
This plugin subclass of ParticleAffector allows you to alter the colour of particles.
Ogre::ColourFaderAffector::ColourFaderAffector | ( | ParticleSystem * | psys | ) |
Default constructor.
|
virtual |
See ParticleAffector.
Implements Ogre::ParticleAffector.
void Ogre::ColourFaderAffector::setAdjust | ( | float | red, |
float | green, | ||
float | blue, | ||
float | alpha = 0.0 |
||
) |
Sets the colour adjustment to be made per second to particles.
red,green,blue,alpha | Sets the adjustment to be made to each of the colour components per second. These values will be added to the colour of all particles every second, scaled over each frame for a smooth adjustment. |
void Ogre::ColourFaderAffector::setRedAdjust | ( | float | red | ) |
Sets the red adjustment to be made per second to particles.
red | The adjustment to be made to the colour component per second. This value will be added to the colour of all particles every second, scaled over each frame for a smooth adjustment. |
float Ogre::ColourFaderAffector::getRedAdjust | ( | void | ) | const |
Gets the red adjustment to be made per second to particles.
void Ogre::ColourFaderAffector::setGreenAdjust | ( | float | green | ) |
Sets the green adjustment to be made per second to particles.
green | The adjustment to be made to the colour component per second. This value will be added to the colour of all particles every second, scaled over each frame for a smooth adjustment. |
float Ogre::ColourFaderAffector::getGreenAdjust | ( | void | ) | const |
Gets the green adjustment to be made per second to particles.
void Ogre::ColourFaderAffector::setBlueAdjust | ( | float | blue | ) |
Sets the blue adjustment to be made per second to particles.
blue | The adjustment to be made to the colour component per second. This value will be added to the colour of all particles every second, scaled over each frame for a smooth adjustment. |
float Ogre::ColourFaderAffector::getBlueAdjust | ( | void | ) | const |
Gets the blue adjustment to be made per second to particles.
void Ogre::ColourFaderAffector::setAlphaAdjust | ( | float | alpha | ) |
Sets the alpha adjustment to be made per second to particles.
alpha | The adjustment to be made to the colour component per second. This value will be added to the colour of all particles every second, scaled over each frame for a smooth adjustment. |
float Ogre::ColourFaderAffector::getAlphaAdjust | ( | void | ) | const |
Gets the alpha adjustment to be made per second to particles.
|
inlinevirtualinherited |
Method called to allow the affector to initialize all newly created particles in the system.
pParticle | Pointer to a Particle to initialize. |
Reimplemented in Ogre::RotationAffector, and Ogre::ColourImageAffector.
|
inlineinherited |
Returns the name of the type of affector.
|
inlineinherited |
Retrieves the parameter dictionary for this class.
|
inlineinherited |
|
inherited |
Retrieves a list of parameters valid for this object.
Generic parameter setting method.
name | The name of the parameter to set |
value | String value. Must be in the right format for the type specified in the parameter definition. See the StringConverter class for more information. |
Referenced by Ogre::StringInterface::copyParametersTo().
|
inherited |
Generic multiple parameter setting method.
paramList | Name/value pair list |
Generic parameter retrieval method.
name | The name of the parameter to get |
References Ogre::ParamCommand::doGet().
|
inlineinherited |
Method for copying this object's parameters to another object.
dest | Pointer to object to have it's parameters set the same as this object. |
References Ogre::StringInterface::setParameter().
|
staticinherited |
Cleans up the static 'msDictionary' required to reset Ogre, otherwise the containers are left with invalid pointers, which will lead to a crash as soon as one of the ResourceManager implementers (e.g.
MaterialManager) initializes.
|
static |
|
static |
|
static |
|
static |