Watching some YT videos, watched to avoid the "Animator Hell": https://www.youtube.com/watch?v=nBkiSJ5z-hE
Then the Finite State Machine videos start to appear. So I tried to copy this: https://www.youtube.com/watch?v=Ty4wZL7pDME
https://www.youtube.com/watch?v=BNU8xNRk_oU&t=1s
but I do not understand quite well.
This is my project: https://github.com/chriztheanvill/Godot_CS_State_Machine
Its on Godot, with C#
Does not have the Assets folder:
Assets/Images/Character/Individual Sprite/
The thing is:
In the Implementation I repeat the code many times, like:
First get the parent object (Player) in to "pl" where there are the Methods:
Gravity, Movement, Jump, Attack, etc....
Walk, has the "pl.Gravity, pl.Movement, pl.Jump, pl.Attack" Methods.
Jump has the "pl.Gravity, pl.Movement, pl.Jump" Methods.
It is normal to repeat the methods in each state?