Hi everyone! This is my first "complete" bitsy game! Thank you to everyone that helped with tweaking things, especially helping me figure out how to make it so that the background music doesn't pause when dialogue starts.
Let me know what you think!
a little engine for little games, worlds, and stories 路 By
Thanks for playing!
The music pausing was elusive to find but it's actually pretty easy! I need to give credit to someone on here named "earthan"
Ctrl F the html file for "pauseTune" You're looking for this piece of code:
if (soundPlayer) {
soundPlayer.pauseTune();
and just comment it out by adding two forward slashes before the "pauseTune" part, like so:
if (soundPlayer) {
//soundPlayer.pauseTune();
But be aware: every time you save your game from the Bitsy maker it will restore this piece of code. So you'll have to comment out the "pauseTune" code in the html file after editing your game in Bitsy, but before your game is played.
This is the game:
https://nieblagames.itch.io/wildfire-chile
I just added the music again thanks to your hack 馃