Merge branch 'main' into 58-support-for-external-midi-clock

This commit is contained in:
2023-10-05 18:48:58 +03:00
8 changed files with 134 additions and 104 deletions

View File

@@ -303,7 +303,8 @@ export class SoundEvent extends AudibleEvent {
// Unit
public stretch = (beat: number) => {
this.updateValue("unit", "c");
this.updateValue("speed", 2 / beat)
this.updateValue("speed", 1 / beat)
this.updateValue("cut", beat)
return this;
}