Answers for "check how long a bool has been true for unity"

C#
0

check how long a bool has been true for unity

bool A;
float countDown = 3;
float stopwatch = 0;

if (A == true)
{
	stopwatch += Time.deltaTime;
    if (stopwatch >= countdown)
    {
    	Debug.Log("A has been true for 3 seconds");
   	}
}
else
{
	stopwatch = 0;
}
Posted by: Guest on September-30-2020

Code answers related to "check how long a bool has been true for unity"

C# Answers by Framework

Browse Popular Code Answers by Language