This commit is contained in:
2024-11-24 18:03:06 +00:00
parent 641938f7e4
commit 16ba22d90b
39 changed files with 76 additions and 254 deletions

View File

@@ -1,5 +1,5 @@
import { MountedFs } from "../FileSystem/MountedFs";
import { FileSystemSource, VirtualFile } from "../FileSystem/types";
import { VirtualFile } from "../FileSystem/types";
import { SoundboardContext } from "./types";
@@ -145,10 +145,6 @@ export class MediaElementSoundNode extends SoundNode {
return this._isPlaying;
}
get currentTime() {
return this.mediaElement!.currentTime;
}
get duration() {
return this.mediaElement!.duration;
}