Godot Version
Godot Engine v4.4.1
Question
I’m trying to get my player to move using a statemachine for animation, but my player character won’t move. I’ve been looking and playing around with it for two days now godotissue - Pastebin.com
Godot Engine v4.4.1
I’m trying to get my player to move using a statemachine for animation, but my player character won’t move. I’ve been looking and playing around with it for two days now godotissue - Pastebin.com
Seems like your walk state doesn’t take inputs.
public partial class StateWalk : State
{
// etc...
public override State HandleInput(InputEvent @event) {
return null;
}