removing stuff

This commit is contained in:
2023-08-17 13:04:45 +02:00
parent 8541d0c3ef
commit ab482b38b2
5 changed files with 9 additions and 9 deletions

View File

@ -1,3 +1,5 @@
import { type Editor } from './main';
import {
superdough,
// @ts-ignore
@ -7,7 +9,7 @@ export class Sound {
values: { [key: string]: any }
constructor(sound: string) {
constructor(sound: string, public app: Editor) {
this.values = { 's': sound }
}
@ -162,6 +164,6 @@ export class Sound {
}
out = (): object => {
return superdough(this.values, 0.0);
return superdough(this.values, this.app.clock.pulse_duration);
}
}