int a_hour = (int)(_time / 3600);
int a_min = (int)_time % 3600 / 60;
int a_sec = (int)_time % 3600 % 60;
string.Format ("{0:D2} : {1:D2} : {2:D2}", a_hour, a_min, a_sec);
=> 01:59:06
'Programming > 유니티' 카테고리의 다른 글
UGUI - text 글자길이에 맞게 Recttransform 크기 변경하기 (recttransform resize as text length) (1) | 2017.02.17 |
---|---|
c# 타임스템프 사용하기 (0) | 2017.02.13 |
animator 사용시 play함수 사용법 (0) | 2017.02.07 |
UGUI - UI Button OnClick 리스너 스크립트에서 지정하기 (0) | 2017.02.03 |
바이너리 파일 읽어오기(read a file as binaryreader) re:2019.05.11 (0) | 2017.01.13 |