Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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