TDME2 1.9.121
PrototypeParticleSystem_SphereParticleEmitter.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
5#include <tdme/math/Vector3.h>
6
10
11PrototypeParticleSystem_SphereParticleEmitter::PrototypeParticleSystem_SphereParticleEmitter()
12{
13 count = 2000;
14 lifeTime = 1500;
15 lifeTimeRnd = 500;
16 mass = 0.0f;
17 massRnd = 0.0f;
18 velocity.set(0.0f, 1.0f, 0.0f);
19 velocityRnd.set(0.0f, 0.5f, 0.0f);
20 colorStart.set(0.5f, 0.5f, 0.5f, 0.5f);
21 colorEnd.set(1.0f, 1.0f, 1.0f, 0.5f);
22 center.set(0.0f, 0.5f, 0.0f);
23 radius = 0.5f;
24}
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Color 4 definition.
Definition: Color4.h:20
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73