I need a Timer countdown. Where should I decrement this variable, on FixedUpdate or Update ? I know while training, Time Scale can be 20 times faster so I need to know what is the correct way to do this. Thanks
if(Status == INFECTED)
{
if(recoverTime <= 0f)
{
Status = RECOVERED;
}
else
{
recoverTime -= Time.deltaTime;
}
}