how d= o I say this:
var 1 += time.deltatime;
var 2 = false;
if (var> 0 and var2 = false) { // <<<< if var 1> 0 and var 2 is false, as I do this?
myCode;
}
how d= o I say this:
var 1 += time.deltatime;
var 2 = false;
if (var> 0 and var2 = false) { // <<<< if var 1> 0 and var 2 is false, as I do this?
myCode;
}
var one += Time.DeltaTime;
var two = false;
if(one > 0 && !two) {
YourMethod();
}