fix(stage-ui-live2d): remove scale override to allow proper Live2D scaling (#984)

This commit is contained in:
horizonzzzz
2026-01-22 19:11:22 +08:00
committed by GitHub
parent faea45e5a5
commit c5e837a6eb
@@ -46,7 +46,7 @@ const componentStateModel = defineModel<'pending' | 'loading' | 'mounted'>('mode
const live2dCanvasRef = ref<InstanceType<typeof Live2DCanvas>>()
const live2d = useLive2d()
const { scale, position } = storeToRefs(live2d)
const { position } = storeToRefs(live2d)
watch([componentStateModel, componentStateCanvas], () => {
componentState.value = (componentStateModel.value === 'mounted' && componentStateCanvas.value === 'mounted')