facebook twitter hatena line email

「Unity/Csharp/時間」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(0に戻して再スタートする場合)
(サンプル)
 
行1: 行1:
==サンプル==
+
==Stopwatchでのサンプル==
 
<pre>
 
<pre>
 
void Start() {
 
void Start() {

2024年8月21日 (水) 02:25時点における最新版

Stopwatchでのサンプル

void Start() {
    System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
    sw.Start();
}
void Update() {
    Debug.Log(sw.ElapsedMilliseconds + "ms")
}
void End() {
    sw.Stop();
    Debug.Log(sw.ElapsedMilliseconds + "ms")
}

https://qiita.com/raku-lab/items/62faa5e6f9d3f060f37e

0に戻して止める場合

sw.Reset();

0に戻して再スタートする場合

sw.Restart();

Updateで時間計測

float sec = 0f;
void Update() {
    sec += Time.deltaTime;
}