using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Timer : MonoBehaviour {
int hour;
int minute;
int second;
int millisecond;
// 已经花费的时间
float timeSpend = 0.0f;
bool isStop;
string timer;
// Use this for initialization
void Start () {
}
private void OnEnable()
{
timeSpend = 0;
timer = "";
isStop = true;
}
private void OnDisable()
{
}
// Update is called once per frame
void Update () {
if(isStop)
{
return;
}
timeSpend += Time.deltaTime;
hour = (int)timeSpend / 3600;
minute = ((int)timeSpend - hour * 3600) / 60;
second = (int)timeSpend - hour * 3600 - minute * 60;
millisecond = (int)((timeSpend - (int)timeSpend) * 1000);
// string timer = string.Format("{0:D2}:{1:D2}:{2:D2}.{3:D3}", hour, minute, second, millisecond);
timer = string.Format("{0:D2}:{1:D2}",minute, second);
// Debug.Log(timer);
}
public string GetTimer()
{
return timer;
}
public void SopTimer()
{
isStop = true;
}
public void StartTimer()
{
isStop = false;
}
}
2018-12-21 unity 定时器 00:00格式
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- var d = new Date('FriDec12 2014 08:00:00 GMT+0800'); d.ge...
- 计时器工具: public class TimingUtil { private static TimingUti...