TDME2 1.9.121
ParticleEmitter.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
8#include <tdme/math/Vector3.h>
9
14
15/**
16 * Particle emitter interface
17 * @author Andreas Drewke
18 * @version $Id$
19 */
21{
22 /**
23 * @return center
24 */
25 virtual const Vector3& getCenter() const = 0;
26
27
28 /**
29 * @return number of particles to emit in one second
30 */
31 virtual int32_t getCount() const = 0;
32
33 /**
34 * @return color start
35 */
36 virtual const Color4& getColorStart() const = 0;
37
38 /**
39 * Set start color
40 * @param colorStart color start
41 */
42 virtual void setColorStart(const Color4& colorStart) = 0;
43
44 /**
45 * @return color end
46 */
47 virtual const Color4& getColorEnd() const = 0;
48
49 /**
50 * Set end color
51 * @param colorEnd color end
52 */
53 virtual void setColorEnd(const Color4& colorEnd) = 0;
54
55 /**
56 * Emits particles
57 * @param particle particle
58 */
59 virtual void emit(Particle* particle) = 0;
60
61 /**
62 * Update transformation with given transformations
63 * @param transformations transformations
64 */
65 virtual void fromTransformations(const Transformations& transformations) = 0;
66
67 /**
68 * Destructor
69 */
70 virtual ~ParticleEmitter() {}
71};
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
3D vector 3 class
Definition: Vector3.h:22
virtual void setColorEnd(const Color4 &colorEnd)=0
Set end color.
virtual void fromTransformations(const Transformations &transformations)=0
Update transformation with given transformations.
virtual void setColorStart(const Color4 &colorStart)=0
Set start color.
virtual void emit(Particle *particle)=0
Emits particles.