no message

This commit is contained in:
Baptiste 2023-07-23 16:01:54 -04:00
parent d60d333743
commit 7de3727297
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ public class Entity : LevelObject
} }
} }
public void move() { public void Move() {
if(!_animation.IsWalking) { if(!_animation.IsWalking) {
_animation.PlayWalkAnim(); _animation.PlayWalkAnim();
} }

View File

@ -25,7 +25,7 @@ public class Opponent : Entity
transform.position += (Vector3)_movementVector; transform.position += (Vector3)_movementVector;
move(); Move();
} }