I have some function which happens after a while. I'm using tweens for the moment:
tween.tween_callback(my_delayed_function).set_delay(1)
I want to be able to cancel the execution of the function in "another" function. But tween.stop() and tween.kill() only work in the function the above code (tween_callback) is executed. If I use them in any other function they seem to have no effect. The delayed function will happen anyway.
What am I doing wrong? And am I supposed to use tweens? Or what?
Thank you