Hi i just started doing a little project of mine (a 2d platformer pixelart) and i’ve seen a lot of tutorials on character movement an animation.
Currently I have 2 player controllers to test wich one would be beter for my project: one calls the animations through code+animated sprite 2D and the other has a animation tree , so i wanted to hear some thoughts of some experienced godot users on this topic
a side from basic movement anims + attack anim it doesn’t have that much anims (just to clarify)
I’ve seen AnimationTrees used for top-down games where each animation has at least four different directions, and it’s easier to pass in the facing vector to the AnimationTree instead of using an if statement to determine which animation to play. Since you’re doing a platformer, you wouldn’t get that benefit since there’s probably only one animation for each animation that you flip.
ye u right, and from what im seeing from other posts (while i was coding the health bar this evening heh) about animation trees i think im gonna stay on animated sprite 2D for this first project, thanks.