particle update

This commit is contained in:
Tobias Lindner 2019-04-15 14:29:06 +00:00
parent 0a87fd871f
commit ccfd789a27

View File

@ -2,26 +2,25 @@
#include "ofMain.h"
#include "attractor.h"
#include "line.h"
class thParticle
class Particle
{
public:
thParticle();
~thParticle();
Particle();
~Particle();
void setup(ofVec2f position);
void update(float deltaT, vector<Attractor*>* attractors);
// void update(float deltaT, ofVec2f attractor);
//Partikel wird komplett upgedated (Bewegung, Farbe, etc...)
//deltaT Zeitintervall seit letztem Update
void draw(); //Partikel anzeigen
void draw();
float getAgeNorm();
float getMaxLife();
ofImage tex;
private:
@ -39,5 +38,5 @@ private:
int blobCounterInParticle;
ofColor color;
ofImage tex;
};