This commit is contained in:
the me 2022-08-07 14:14:04 -07:00
commit 09ade10207
117 changed files with 2153 additions and 0 deletions

View file

@ -0,0 +1,9 @@
function format_time(seconds) {
var time = "";
second = floor(seconds%60);
minute = floor(seconds/60)%60;
hour = floor(seconds/60/60)%60;
//day = ((seconds-minute-second)/60)%24;
time = string(hour)+":"+string(minute)+":"+string(second);
return time;
}

View file

@ -0,0 +1,12 @@
{
"isDnD": false,
"isCompatibility": false,
"parent": {
"name": "data",
"path": "folders/Scripts/data.yy",
},
"resourceVersion": "1.0",
"name": "format_time",
"tags": [],
"resourceType": "GMScript",
}