Browse Source

particle update

boden
Tobias Lindner 5 years ago
parent
commit
ccfd789a27
1 changed files with 8 additions and 9 deletions
  1. 8
    9
      src/particle.h

+ 8
- 9
src/particle.h 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;
};

Loading…
Cancel
Save