Hello all! Im interested how i can make bool function true for only 3-4 sec? I want to make bool reload function, while reloading cant shoot
bool reloading = (Input.GetKeyDown(KeyCode.R));
if (reloading)
{
_canShoot = false;
}
but how I can back this bool to false so I can shoot again?
Thanks in advance!