Animation question

Hello, how can I make my character go from one state to another from idle to running

You can use State Machine in Anim Graph with custom Transition Rule that would trigger the transition between animation, docs: State Machines | Flax Documentation

(or you can use Multi Blend node to blend dynamically between two nodes)

thanks you