stopAll method

void stopAll()

Stops all motions currently being run by the controller and removes them.

myNode.motions.stopAll();

Implementation

void stopAll() {
  for (int i = _motions.length - 1; i >= 0; i--) {
    _stopAtIndex(i);
  }
}