Nirtcpp 2.1.0
Nirtcpp is a high-performance c++ graphics engine.
|
A particle affector which rotates the particle system. More...
#include <nirtcpp/core/engine/IParticleRotationAffector.hpp>
Public Member Functions | |
virtual void | setPivotPoint (const core::vector3df &point)=0 |
Set the point that particles will rotate around. | |
virtual void | setSpeed (const core::vector3df &speed)=0 |
Set the speed in degrees per second in all 3 dimensions. | |
virtual const core::vector3df & | getPivotPoint () const =0 |
Get the point that particles are attracted to. | |
virtual const core::vector3df & | getSpeed () const =0 |
Get the speed in degrees per second in all 3 dimensions. | |
virtual E_PARTICLE_AFFECTOR_TYPE | getType () const override |
Get emitter type. | |
Public Member Functions inherited from nirt::scene::IParticleAffector | |
IParticleAffector () | |
constructor | |
virtual void | affect (u32 now, SParticle *particlearray, u32 count)=0 |
Affects an array of particles. | |
virtual void | setEnabled (bool enabled) |
Sets whether or not the affector is currently enabled. | |
virtual bool | getEnabled () const |
Gets whether or not the affector is currently enabled. | |
Public Member Functions inherited from nirt::io::IAttributeExchangingObject | |
virtual void | serializeAttributes (io::IAttributes *out, io::SAttributeReadWriteOptions *options=0) const |
Writes attributes of the object. | |
virtual void | deserializeAttributes (io::IAttributes *in, io::SAttributeReadWriteOptions *options=0) |
Reads attributes of the object. | |
Public Member Functions inherited from nirt::IReferenceCounted | |
IReferenceCounted () | |
Constructor. | |
virtual | ~IReferenceCounted () |
Destructor. | |
void | grab () const |
Grabs the object. Increments the reference counter by one. | |
bool | drop () const |
Drops the object. Decrements the reference counter by one. | |
s32 | getReferenceCount () const |
Get the reference count. | |
const c8 * | getDebugName () const |
Returns the debug name of the object. | |
Additional Inherited Members | |
Protected Member Functions inherited from nirt::IReferenceCounted | |
void | setDebugName (const c8 *newName) |
Sets the debug name of the object. | |
Protected Attributes inherited from nirt::scene::IParticleAffector | |
bool | Enabled |
A particle affector which rotates the particle system.
|
inlineoverridevirtual |
Get emitter type.
Implements nirt::scene::IParticleAffector.