Hi! I am very new to godot and am attempting to play around with functions.
and my dilemma is this:
func text(delta):
$conTEXT.percentvisible += 1
pass
func onTimer_timeout():
_text()
pass
it says for this code, "too few arguments to for _text() call" and when I throw in like this
func onTimer_timeout():
_text(delta)
pass
it says that the function doesn't exist in that class...
so now i have input the delta next to timer_timeout() and have thrown it in as it's own variable... please help me fix this