Hi
func _input(event):
if event.is_action_released("forward"):
if (not $AccTimer.get_time_left() == 0):
print('$AccTimer')
else:
print('hi')
$AccTimer.start()
this code doesn't work properly
First it enters in second logic and print "hi" Then
no matter how many time elapse Its
always enters in first logic and print '$AccTimer'
I set Timer to "1" to "0.3" ...