particle update
This commit is contained in:
parent
0a87fd871f
commit
ccfd789a27
@ -2,26 +2,25 @@
|
|||||||
|
|
||||||
#include "ofMain.h"
|
#include "ofMain.h"
|
||||||
#include "attractor.h"
|
#include "attractor.h"
|
||||||
|
#include "line.h"
|
||||||
|
|
||||||
class thParticle
|
class Particle
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
thParticle();
|
Particle();
|
||||||
~thParticle();
|
~Particle();
|
||||||
|
|
||||||
void setup(ofVec2f position);
|
void setup(ofVec2f position);
|
||||||
|
|
||||||
void update(float deltaT, vector<Attractor*>* attractors);
|
void update(float deltaT, vector<Attractor*>* attractors);
|
||||||
// void update(float deltaT, ofVec2f attractor);
|
|
||||||
//Partikel wird komplett upgedated (Bewegung, Farbe, etc...)
|
void draw();
|
||||||
//deltaT Zeitintervall seit letztem Update
|
|
||||||
void draw(); //Partikel anzeigen
|
|
||||||
|
|
||||||
float getAgeNorm();
|
float getAgeNorm();
|
||||||
float getMaxLife();
|
float getMaxLife();
|
||||||
ofImage tex;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
@ -39,5 +38,5 @@ private:
|
|||||||
int blobCounterInParticle;
|
int blobCounterInParticle;
|
||||||
|
|
||||||
ofColor color;
|
ofColor color;
|
||||||
|
ofImage tex;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user