mirror of
https://github.com/processing/processing4.git
synced 2026-01-29 19:31:16 +01:00
37 lines
623 B
Plaintext
37 lines
623 B
Plaintext
class ParticleSystem {
|
|
ArrayList<Particle> particles;
|
|
|
|
PShape particleShape;
|
|
|
|
ParticleSystem(int n) {
|
|
particles = new ArrayList<Particle>();
|
|
particleShape = createShape(PShape.GROUP);
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
Particle p = new Particle();
|
|
particles.add(p);
|
|
particleShape.addChild(p.getShape());
|
|
}
|
|
}
|
|
|
|
void update() {
|
|
for (Particle p : particles) {
|
|
p.update();
|
|
}
|
|
}
|
|
|
|
void setEmitter(float x, float y) {
|
|
for (Particle p : particles) {
|
|
if (p.isDead()) {
|
|
p.rebirth(x, y);
|
|
}
|
|
}
|
|
}
|
|
|
|
void display() {
|
|
|
|
shape(particleShape);
|
|
}
|
|
}
|
|
|