Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(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