Fixes for origin being string, styling bug hair select and wrong label tags
This commit is contained in:
@ -37,8 +37,8 @@ const imageProps = computed(() => {
|
||||
|
||||
return {
|
||||
depth: 1,
|
||||
originX: spriteAction?.originX ?? 0,
|
||||
originY: spriteAction?.originY ?? 0,
|
||||
originX: Number(spriteAction?.originX) ?? 0,
|
||||
originY: Number(spriteAction?.originY) ?? 0,
|
||||
flipX: isFlippedX.value,
|
||||
texture: texture.value,
|
||||
y: props.zoneCharacter.isMoving ? Math.floor(Date.now() / 250) % 2 : 0
|
||||
|
Reference in New Issue
Block a user