aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Particle.cpp
blob: 8cf7f7e82e65fbc8434eedd4e877fb578e995e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "Particle.hpp"
#include <iostream>

Particle::Particle()
{
    this->active = false;
}

void Particle::reset(float lifespan, Position position, Position velocity) {
    this->timeInLife = 0;
    this->lifespan = lifespan;
    this->position = position;
    this->velocity = velocity;
    this->active = true;
}

void Particle::update(float deltaTime) {
    timeInLife += deltaTime;
    position.x += velocity.x * deltaTime;
    position.y += velocity.y * deltaTime;
    if(timeInLife >= lifespan)this->active = false;
}