TDME2 1.9.121
PrototypeParticleSystem_BoundingBoxParticleEmitter.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 bounding box 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;
35
36public:
37 /**
38 * Public constructor
39 */
41
42 /**
43 * @return count
44 */
45 inline int getCount() {
46 return count;
47 }
48
49 /**
50 * Set count
51 * @param count count
52 */
53 inline void setCount(int count) {
54 this->count = count;
55 }
56
57 /**
58 * @return life time
59 */
60 inline int64_t getLifeTime() {
61 return lifeTime;
62 }
63
64 /**
65 * Set life time
66 * @param lifeTime life time
67 */
68 inline void setLifeTime(int64_t lifeTime) {
69 this->lifeTime = lifeTime;
70 }
71
72 /**
73 * @return life time rnd
74 */
75 inline int64_t getLifeTimeRnd() {
76 return lifeTimeRnd;
77 }
78
79 /**
80 * Set life time rnd
81 * @param lifeTimeRnd life time rnd
82 */
83 inline void setLifeTimeRnd(int64_t lifeTimeRnd) {
84 this->lifeTimeRnd = lifeTimeRnd;
85 }
86
87 /**
88 * @return mass
89 */
90 inline float getMass() {
91 return mass;
92 }
93
94 /**
95 * Set mass
96 * @param mass mass
97 */
98 inline void setMass(float mass) {
99 this->mass = mass;
100 }
101
102 /**
103 * @return mass rnd
104 */
105 inline float getMassRnd() {
106 return massRnd;
107 }
108
109 /**
110 * Set mass rnd
111 * @param massRnd mass rnd
112 */
113 inline void setMassRnd(float massRnd) {
114 this->massRnd = massRnd;
115 }
116
117 /**
118 * @return velocity
119 */
120 inline const Vector3& getVelocity() {
121 return velocity;
122 }
123
124 /**
125 * Set velocity
126 * @param velocity velocity
127 */
128 inline void setVelocity(const Vector3& velocity) {
129 this->velocity = velocity;
130 }
131
132 /**
133 * @return velocity rnd
134 */
135 inline const Vector3& getVelocityRnd() {
136 return velocityRnd;
137 }
138
139 /**
140 * Set random velocity
141 * @param velocityRnd random velocity
142 */
143 inline void setVelocityRnd(const Vector3& velocityRnd) {
144 this->velocityRnd = velocityRnd;
145 }
146
147 /**
148 * @return color start
149 */
150 inline const Color4& getColorStart() {
151 return colorStart;
152 }
153
154 /**
155 * Set start color
156 * @param colorStart start color
157 */
158 inline void setColorStart(const Color4& colorStart) {
159 this->colorStart = colorStart;
160 }
161
162 /**
163 * @return color end
164 */
165 inline const Color4& getColorEnd() {
166 return colorEnd;
167 }
168
169 /**
170 * Set end color
171 * @param colorEnd color end
172 */
173 inline void setColorEnd(const Color4& colorEnd) {
174 this->colorEnd = colorEnd;
175 }
176
177 /**
178 * @return obb center
179 */
180 inline const Vector3& getObbCenter() {
181 return obbCenter;
182 }
183
184 /**
185 * Set obb center
186 * @param obbCenter obb center
187 */
188 inline void setObbCenter(const Vector3& obbCenter) {
189 this->obbCenter = obbCenter;
190 }
191
192 /**
193 * @return obb half extension
194 */
195 inline const Vector3& getObbHalfextension() {
196 return obbHalfextension;
197 }
198
199 /**
200 * Set obb half extension
201 * @param obbHalfExtension obb half extension
202 */
203 inline void setObbHalfextension(const Vector3& obbHalfExtension) {
204 this->obbHalfextension = obbHalfExtension;
205 }
206
207 /**
208 * @return obb axis 0
209 */
210 inline const Vector3& getObbAxis0() {
211 return obbAxis0;
212 }
213
214 /**
215 * Set obb axis 0
216 * @param obbAxis0 obb axis 0
217 */
218 inline void setObbAxis0(const Vector3& obbAxis0) {
219 this->obbAxis0 = obbAxis0;
220 }
221
222 /**
223 * @return obb axis 1
224 */
225 inline const Vector3& getObbAxis1() {
226 return obbAxis1;
227 }
228
229 /**
230 * Set obb axis 1
231 * @param obbAxis1 obb axis 1
232 */
233 inline void setObbAxis1(const Vector3& obbAxis1) {
234 this->obbAxis1 = obbAxis1;
235 }
236
237 /**
238 * @return obb axis 2
239 */
240 inline const Vector3& getObbAxis2() {
241 return obbAxis2;
242 }
243
244 /**
245 * Set obb axis 2
246 * @param obbAxis2 obb axis 2
247 */
248 inline void setObbAxis2(const Vector3& obbAxis2) {
249 this->obbAxis2 = obbAxis2;
250 }
251
252};
Color 4 definition.
Definition: Color4.h:20
3D vector 3 class
Definition: Vector3.h:22