diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-10 08:38:40 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-10 08:38:40 +0200 |
commit | d001c4ba95a72f13c942f1a24eb98fe1584d93a4 (patch) | |
tree | 8d72f1ddf9baf591fdf99397aa1495a219d35d35 /src/crepe/ParticleEmitter.h | |
parent | 163c9e3eea437daa8ef6007fbdf2f91470066cbf (diff) |
Renamed files and Emitter is a component
Diffstat (limited to 'src/crepe/ParticleEmitter.h')
-rw-r--r-- | src/crepe/ParticleEmitter.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/crepe/ParticleEmitter.h b/src/crepe/ParticleEmitter.h new file mode 100644 index 0000000..477f492 --- /dev/null +++ b/src/crepe/ParticleEmitter.h @@ -0,0 +1,32 @@ +#pragma once + +#include <vector> +#include "Particle.h" +#include <cstdint> +#include "Component.h" +# + +namespace crepe { + +class ParticleEmitter : public Component { +public: + ParticleEmitter(uint32_t maxParticles, uint32_t emissionRate, uint32_t speed, uint32_t speedOffset, uint32_t angle, uint32_t angleOffset,float m_beginLifespan,float m_endLifespan); + ~ParticleEmitter(); + + Position m_position; //position of the emitter + uint32_t m_maxParticles; //maximum number of particles + uint32_t m_emissionRate; //rate of particle emission + uint32_t m_speed; //base speed of the particles + uint32_t m_speedOffset; //offset for random speed variation + uint32_t m_minAngle; //min angle of particle emission + uint32_t 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 + +}; + +} + + |