Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

This is 5/5 for theme interpretation xD I think its definitely the most novel way of re-using a cliche that I have come across in the jam so far! I also really appreciate that it looks like you've entirely done the artwork yourself and drawn everything by hand/mouse so well done there too. I love the fact that you have a leaderboard as well - I think I'm in position #53 so there are people playing this game that are way better than me! What did you use to implement your leaderboard? I'm looking for a solution for my own game. Great, dark, entry - well done!

(+1)

I set up a MySQL database on my web server and then created 3 PHP script endpoints to query the database and return the information in JSON format. This was then read by an HTTPget request from within unity and strings printed into their associated container locations.
Pretty simple really.
If you have a look in my repo Raining-Cats-and-Dogs/Assets/PHP files for Leaderboard at main · Skuzzle-UK/Raining-Cats-and-Dogs (github.com) this is a direct link to the php files and the leaderboard scripts and scene are in here Raining-Cats-and-Dogs/Assets/Scenes/Leaderboard at main · Skuzzle-UK/Raining-Cats-and-Dogs (github.com).