Skip to content

Commit c5e837a

Browse files
authored
fix(stage-ui-live2d): remove scale override to allow proper Live2D scaling (#984)
1 parent faea45e commit c5e837a

File tree

1 file changed

+1
-1
lines changed
  • packages/stage-ui-live2d/src/components/scenes

1 file changed

+1
-1
lines changed

packages/stage-ui-live2d/src/components/scenes/Live2D.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const componentStateModel = defineModel<'pending' | 'loading' | 'mounted'>('mode
4646
const live2dCanvasRef = ref<InstanceType<typeof Live2DCanvas>>()
4747
4848
const live2d = useLive2d()
49-
const { scale, position } = storeToRefs(live2d)
49+
const { position } = storeToRefs(live2d)
5050
5151
watch([componentStateModel, componentStateCanvas], () => {
5252
componentState.value = (componentStateModel.value === 'mounted' && componentStateCanvas.value === 'mounted')

0 commit comments

Comments
 (0)