Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Concept is incredible, the game blends with the theme perfectly and I liked playing it!

There is this little thing about the music: when you don't finish a level and escape in order to restart another level, this superimpose another music (or maybe the same but delayed?) to the existing one. At some point it was too much superimposition and I had to quit the game and restart again.
But like I said, awesome game, well done!

(1 edit)

Thanks for playing. The music glitch was a known glitch minutes after I submitted it. The problem was in my code to make sure only one music script was playing. The code would check if it wasn't the first one loaded and would delete itself if it was. The problem was that the script would delete the script to delete itself rather then the object that was actually playing the music which would cause 2 objects playing the same music to be playing at the same time. It was a simple fix by changing "Destroy(this);" to "Destroy(gameObject);". I did fix it in the newer version but accidently removed the escape feature entirely in that version also. Thanks for letting me know.

Yes small fix :)
Happy to help!