vorple / inform7

Inform 7 extensions and templates
Other
9 stars 4 forks source link

"stop all audio" and "stop sound effects" do not actually stop looping sound effects. #24

Open joshwarecom opened 3 years ago

joshwarecom commented 3 years ago

Hypothesis: there may be a typo in the Inform 7 multimedia extension where:

To stop all/-- sound effects:
    execute JavaScript command "$('.vorple-sound').remove()".

To stop all audio:
    execute JavaScript command "$('.vorple-sound').remove();vorple.audio.stopMusic()".

...should be updated to '.vorple-sound-effect' in order to properly stop the sound effects.

There is a similar issue in Inform 6 I posted here: https://github.com/vorple/inform6/issues/32