TDME2 1.9.121
PrototypeParticleSystem_PointParticleEmitter.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
8#include <tdme/math/Vector3.h>
9
12
13/**
14 * Prototype point particle emitter definition
15 * @author Andreas Drewke
16 * @version $Id$
17 */
19{
20private:
21 int count;
22 int64_t lifeTime;
23 int64_t lifeTimeRnd;
24 float mass;
25 float massRnd;
31
32public:
33 /**
34 * Public constructor
35 */
37
38 /**
39 * @return count
40 */
41 inline int getCount() {
42 return count;
43 }
44
45 /**
46 * Set count
47 * @param count count
48 */
49 inline void setCount(int count) {
50 this->count = count;
51 }
52
53 /**
54 * @return life time
55 */
56 inline int64_t getLifeTime() {
57 return lifeTime;
58 }
59
60 /**
61 * Set life time
62 * @param lifeTime life time
63 */
64 inline void setLifeTime(int64_t lifeTime) {
65 this->lifeTime = lifeTime;
66 }
67
68 /**
69 * @return life time rnd
70 */
71 inline int64_t getLifeTimeRnd() {
72 return lifeTimeRnd;
73 }
74
75 /**
76 * Set life time rnd
77 * @param lifeTimeRnd life time rnd
78 */
79 inline void setLifeTimeRnd(int64_t lifeTimeRnd) {
80 this->lifeTimeRnd = lifeTimeRnd;
81 }
82
83 /**
84 * @return mass
85 */
86 inline float getMass() {
87 return mass;
88 }
89
90 /**
91 * Set mass
92 * @param mass mass
93 */
94 inline void setMass(float mass) {
95 this->mass = mass;
96 }
97
98 /**
99 * @return mass rnd
100 */
101 inline float getMassRnd() {
102 return massRnd;
103 }
104
105 /**
106 * Set mass rnd
107 * @param massRnd mass rnd
108 */
109 inline void setMassRnd(float massRnd) {
110 this->massRnd = massRnd;
111 }
112
113 /**
114 * @return position
115 */
117 return position;
118 }
119
120 /**
121 * Set position
122 * @param position position
123 */
124 inline void setPosition(const Vector3& position) {
125 this->position = position;
126 }
127
128 /**
129 * @return velocity
130 */
131 inline const Vector3& getVelocity() {
132 return velocity;
133 }
134
135 /**
136 * Set velocity
137 * @param velocity velocity
138 */
139 inline void setVelocity(const Vector3& velocity) {
140 this->velocity = velocity;
141 }
142
143 /**
144 * @return velocity rnd
145 */
146 inline const Vector3& getVelocityRnd() {
147 return velocityRnd;
148 }
149
150 /**
151 * Set random velocity
152 * @param velocityRnd random velocity
153 */
154 inline void setVelocityRnd(const Vector3& velocityRnd) {
155 this->velocityRnd = velocityRnd;
156 }
157
158 /**
159 * @return color start
160 */
161 inline const Color4& getColorStart() {
162 return colorStart;
163 }
164
165 /**
166 * Set start color
167 * @param colorStart start color
168 */
169 inline void setColorStart(const Color4& colorStart) {
170 this->colorStart = colorStart;
171 }
172
173 /**
174 * @return color end
175 */
176 inline const Color4& getColorEnd() {
177 return colorEnd;
178 }
179
180 /**
181 * Set end color
182 * @param colorEnd color end
183 */
184 inline void setColorEnd(const Color4& colorEnd) {
185 this->colorEnd = colorEnd;
186 }
187
188};
Color 4 definition.
Definition: Color4.h:20
3D vector 3 class
Definition: Vector3.h:22