addGenerator method

void addGenerator(
  1. Vector2 center,
  2. Particle particle
)

Implementation

void addGenerator(Vector2 center, Particle particle) {
  generators.add(VoronoiGenerator(center, particle));
}