I was trying to do something and for some reason the timers don't work if the if testament is checking numbers or true/false, does anyone know how to fix this or why is this happening?
extends Node2D
var woooh = 1
func _process(_delta):
if woooh >= 3:
$Timer.start()
if Input.is_action_just_pressed("ui_accept"):
woooh += 1
print (woooh)
func timeout():
print ("lol")