Oh, no, that's not it. I'm not talking about the node Timer, no. In Godot 2.2 branch there's the method create_timer(seconds)
available. You can use yield(get_tree().create_timer(seconds), "timeout")
to pause a piece of code until the timer finishes. The problem is, this method still runs while paused.