blob: 5de5e1ecdfd8a6cc06e2e771a9960fdcc9d4c551 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include <vector>
#include "Particle.hpp"
class ParticleEmitter {
public:
ParticleEmitter(unsigned int maxParticles, unsigned int emissionRate, unsigned int speed, unsigned int speedOffset, unsigned int angle, unsigned int angleOffset,float m_beginLifespan,float m_endLifespan);
~ParticleEmitter();
Position m_position; //position of the emitter
unsigned int m_maxParticles; //maximum number of particles
unsigned int m_emissionRate; //rate of particle emission
unsigned int m_speed; //base speed of the particles
unsigned int m_speedOffset; //offset for random speed variation
unsigned int m_minAngle; //min angle of particle emission
unsigned int m_maxAngle; //max angle of particle emission
float m_beginLifespan; //begin Lifespan of particle (only visual)
float m_endLifespan; //begin Lifespan of particle
std::vector<Particle> particles; //collection of particles
};
|