-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimer.cs
More file actions
47 lines (40 loc) · 960 Bytes
/
Copy pathTimer.cs
File metadata and controls
47 lines (40 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
namespace VoxelEngine;
public class Timer
{
float waitTime;
float timeSinceStart = 0;
public bool finished = false;
public bool finishedThisFrame = false;
public float timeLeft = 0;
public Timer(float waitTime = 1, bool startNow = true)
{
this.waitTime = waitTime;
Reset();
}
public void AdvanceTimer(float delta)
{
if (finished)
{
if (finishedThisFrame) finishedThisFrame = false;
return;
}
timeSinceStart += delta;
timeLeft = waitTime - timeSinceStart;
if (timeSinceStart >= waitTime)
{
finished = true;
finishedThisFrame = true;
}
}
public void Reset()
{
timeSinceStart = 0;
finished = false;
finishedThisFrame = false;
timeLeft = waitTime;
}
public void SetWaitTime(float waitTime)
{
this.waitTime = waitTime;
}
}