update API functions too
This commit is contained in:
@ -168,16 +168,19 @@ export class UserAPI {
|
||||
|
||||
public play = (): void => {
|
||||
this.app.setButtonHighlighting("play", true);
|
||||
this.MidiConnection.sendStartMessage();
|
||||
this.app.clock.start();
|
||||
};
|
||||
|
||||
public pause = (): void => {
|
||||
this.app.setButtonHighlighting("pause", true);
|
||||
this.MidiConnection.sendStopMessage();
|
||||
this.app.clock.pause();
|
||||
};
|
||||
|
||||
public stop = (): void => {
|
||||
this.app.setButtonHighlighting("stop", true);
|
||||
this.MidiConnection.sendStopMessage();
|
||||
this.app.clock.stop();
|
||||
};
|
||||
silence = this.stop;
|
||||
|
||||
Reference in New Issue
Block a user