workadventure/front/src/Phaser/Player/Animation.ts

11 lines
191 B
TypeScript
Raw Normal View History

export enum PlayerAnimationDirections {
2021-09-06 14:27:54 +02:00
Down = "down",
Left = "left",
Up = "up",
Right = "right",
}
export enum PlayerAnimationTypes {
2021-09-06 14:27:54 +02:00
Walk = "walk",
Idle = "idle",
2020-04-07 20:46:30 +02:00
}