reset method

void reset()

Stops the animation and clears all particles, returning to ControllerState.idle.

Implementation

void reset() {
  _state = ControllerState.idle;
  notifyListeners();
}