play method
void
play()
Starts playback of this sequence. If it is already playing, this will have no effect.
Implementation
void play() {
if (!globalState.isEngineReady) return;
if (getIsOver()) {
setBeat(0.0);
}
globalState.playSequence(id);
}