From 4a0e1917752f66ae11a88d29163e5785ea8a5d44 Mon Sep 17 00:00:00 2001 From: Rin Date: Tue, 17 Feb 2026 02:11:10 +0800 Subject: [PATCH] fix(stage-ui): live2d scaling not applied visually in model settings view (#1036) --- .../src/components/scenarios/settings/model-settings/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/stage-ui/src/components/scenarios/settings/model-settings/index.vue b/packages/stage-ui/src/components/scenarios/settings/model-settings/index.vue index 16832fa2b..2bca4de80 100644 --- a/packages/stage-ui/src/components/scenarios/settings/model-settings/index.vue +++ b/packages/stage-ui/src/components/scenarios/settings/model-settings/index.vue @@ -31,6 +31,7 @@ const selectedModel = ref() const positionCursor = useMouse() const settingsStore = useSettings() +const { scale: live2dScale } = storeToRefs(useLive2d()) const { live2dDisableFocus, stageModelSelectedUrl, @@ -105,6 +106,7 @@ watch(selectedModel, async () => { :model-src="stageModelSelectedUrl" :model-id="stageModelSelected" :disable-focus-at="live2dDisableFocus" + :scale="live2dScale" :theme-colors-hue="themeColorsHue" :theme-colors-hue-dynamic="themeColorsHueDynamic" :live2d-idle-animation-enabled="live2dIdleAnimationEnabled"