`Hello, trying to create Pac-man in Godot 4. I’ve entered the input in project settings and set the script for player movement, but Pac-man won’t move. I’m following a tutorial, has something changed from Godot 4.1 to 4.4.1?
You assign your inputs to variable movement_direction, but you need to assign it to velocity at some point before you call the move_and_slide().
Simply adding this line before move_and_slide() should do the trick