start method

dynamic start()

Starts the effect emission, allowing particles to be emitted.

Implementation

start() {
  if (_state == EffectState.killed) {
    throw StateError("Can't start a killed effect");
  }
  _updateState(EffectState.running);
}