TDME2 1.9.121
PrototypeParticleSystem_SphereParticleEmitter.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 sphere 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 float radius;
32
33public:
34 /**
35 * Public constructor
36 */
38
39 /**
40 * @return count
41 */
42 inline int getCount() {
43 return count;
44 }
45
46 /**
47 * Set count
48 * @param count count
49 */
50 inline void setCount(int count) {
51 this->count = count;
52 }
53
54 /**
55 * @return life time
56 */
57 inline int64_t getLifeTime() {
58 return lifeTime;
59 }
60
61 /**
62 * Set life time
63 * @param lifeTime life time
64 */
65 inline void setLifeTime(int64_t lifeTime) {
66 this->lifeTime = lifeTime;
67 }
68
69 /**
70 * @return life time rnd
71 */
72 inline int64_t getLifeTimeRnd() {
73 return lifeTimeRnd;
74 }
75
76 /**
77 * Set life time rnd
78 * @param lifeTimeRnd life time rnd
79 */
80 inline void setLifeTimeRnd(int64_t lifeTimeRnd) {
81 this->lifeTimeRnd = lifeTimeRnd;
82 }
83
84 /**
85 * @return mass
86 */
87 inline float getMass() {
88 return this->mass;
89 }
90
91 /**
92 * Set mass
93 * @param mass mass
94 */
95 inline void setMass(float mass) {
96 this->mass = mass;
97 }
98
99 /**
100 * @return mass rnd
101 */
102 inline float getMassRnd() {
103 return massRnd;
104 }
105
106 /**
107 * Set mass rnd
108 * @param massRnd mass rnd
109 */
110 inline void setMassRnd(float massRnd) {
111 this->massRnd = massRnd;
112 }
113
114 /**
115 * @return velocity
116 */
117 inline const Vector3& getVelocity() {
118 return velocity;
119 }
120
121 /**
122 * Set velocity
123 * @param velocity velocity
124 */
125 inline void setVelocity(const Vector3& velocity) {
126 this->velocity = velocity;
127 }
128
129 /**
130 * @return velocity rnd
131 */
132 inline const Vector3& getVelocityRnd() {
133 return velocityRnd;
134 }
135
136 /**
137 * Set random velocity
138 * @param velocityRnd random velocity
139 */
140 inline void setVelocityRnd(const Vector3& velocityRnd) {
141 this->velocityRnd = velocityRnd;
142 }
143
144 /**
145 * @return color start
146 */
147 inline const Color4& getColorStart() {
148 return colorStart;
149 }
150
151 /**
152 * Set start color
153 * @param colorStart start color
154 */
155 inline void setColorStart(const Color4& colorStart) {
156 this->colorStart = colorStart;
157 }
158
159 /**
160 * @return color end
161 */
162 inline const Color4& getColorEnd() {
163 return colorEnd;
164 }
165
166 /**
167 * Set end color
168 * @param colorEnd color end
169 */
170 inline void setColorEnd(const Color4& colorEnd) {
171 this->colorEnd = colorEnd;
172 }
173
174 /**
175 * @return center
176 */
177 inline const Vector3& getCenter() {
178 return center;
179 }
180
181 /**
182 * Set center
183 * @param center center
184 */
185 inline void setCenter(const Vector3& center) {
186 this->center = center;
187 }
188
189 /**
190 * @return radius
191 */
192 inline float getRadius() {
193 return radius;
194 }
195
196 /**
197 * Set radius
198 * @param radius radius
199 */
200 inline void setRadius(float radius) {
201 this->radius = radius;
202 }
203
204};
Color 4 definition.
Definition: Color4.h:20
3D vector 3 class
Definition: Vector3.h:22