Coding Help Player moving without animation

gxy

Newcomer
Hello guys, i try to move player but animation is mising, anyone can help? here is my code:

Game1.player.movementDirections.Clear();
Game1.player.faceDirection((int)E_Direction.Left);
Game1.player.SetMovingLeft(true);
Game1.player.position.X += 1f;
 
Top