diff --git a/src/components/sprites/Character.vue b/src/components/sprites/Character.vue index 2ff0524..e65383f 100644 --- a/src/components/sprites/Character.vue +++ b/src/components/sprites/Character.vue @@ -86,7 +86,7 @@ watch( const charTexture = computed(() => { if (!props.character?.characterType?.sprite) { - return 'idle_left_down' + return 'idle_right_down' } const rotation = props.character.rotation @@ -94,9 +94,9 @@ const charTexture = computed(() => { const action = props.character.isMoving ? 'walk' : 'idle' if (rotation === 2 || rotation === 4) { - return `${spriteId}-${action}_left_down` + return `${spriteId}-${action}_left_up` } else if (rotation === 0 || rotation === 6) { - return `${spriteId}-${action}_right_up` + return `${spriteId}-${action}_right_down` } return `${spriteId}-${action}_left_down` // Default fallback