Well at least the tutorial makes you understand the value of Animation tree :D
For playing animations I use:
func _ready():
active = true
playback = get("parameters/playback")
playback.start("idle_armed")
And then I use
playback.travel('run_armed')
To travel to another node.