Compare commits

..

No commits in common. "f014befbbdbcf67566c9df485831e43e77c4eb78" and "0c21d99d57c543d1d2a4a2f1047fda1cf304e9ac" have entirely different histories.

4 changed files with 2 additions and 24 deletions

View File

@ -78,13 +78,6 @@ export class BgmController<
this.mainGain.setVolume(volume);
}
/**
*
*/
getVolume() {
return this.mainGain.getVolume();
}
/**
*
* @param enabled

View File

@ -376,16 +376,6 @@ export class AudioRoute
) {
super();
this.output = source.output;
source.on('end', () => {
if (this.status === AudioStatus.Playing) {
this.status = AudioStatus.Stoped;
}
});
source.on('play', () => {
if (this.status !== AudioStatus.Playing) {
this.status = AudioStatus.Playing;
}
});
}
/**

View File

@ -45,13 +45,6 @@ export class SoundPlayer<
this.gain.setVolume(volume);
}
/**
*
*/
getVolume() {
return this.gain.getVolume();
}
/**
*
* @param id

View File

@ -385,6 +385,8 @@ export class AudioStreamSource extends AudioSource implements IStreamReader {
this.createSourceNode(this.buffer);
this.output.start(0, when);
this.playing = true;
console.log(when);
this.output.addEventListener('ended', () => {
this.playing = false;
this.emit('end');