AnimationTree Node allows blending animations created in AnimationPlayer Node
but I can't find how to set the speed of the animations and I don't want to modify animations keyframe by keyframe. I set animations by using eg:
$animation_tree.["parameters/playback"].travel("Idle")
on process function.
setting the AnimatioPlayer's playback_speed parameter using
$AnimationPlayer.set_speed_scale(2)
or
$AnimationPlayer.playback_speed = 2
only changes the speed in editor but not at runtime
how to solve it?
