This commit is contained in:
Caitlin Hennessy
2017-12-14 09:17:47 -08:00
parent 2d81be3b24
commit cb648019bb
3 changed files with 8 additions and 3 deletions

View File

@ -43,7 +43,9 @@ namespace pxsim.SoundMethods {
}
export function stop() {
audio.pause();
if (audio) {
audio.pause();
}
}
}