Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+1)

Yes! I switched it up in 6.233333... seconds? Minutes, maybe? Certainly didn't feel like hours...

Anyways, I love how you actually tried to make fun puzzles! Not many do this on jams.

6.23 minutes! Couldn't figure out a way to make it round up in the 3 days lol :P

(2 edits)

milliseconds = Math.floor(seconds * 1000)
text = ( 
           (milliseconds / 60000) + " : " +
           ((milliseconds / 1000) % 60) + " . " +
           (milliseconds % 1000)
        )

I'm using GDvelop which uses an event system, I'm not sure that will work. Thanks anyway though