diff --git a/apps/stage-web/src/components/Layouts/ViewControls/Inputs.vue b/apps/stage-web/src/components/Layouts/ViewControls/Inputs.vue index 643c9fc38..1628adf2a 100644 --- a/apps/stage-web/src/components/Layouts/ViewControls/Inputs.vue +++ b/apps/stage-web/src/components/Layouts/ViewControls/Inputs.vue @@ -9,7 +9,7 @@ const props = defineProps<{ }>() const { stageView, stageViewControlsEnabled } = storeToRefs(useSettings()) -const { scale: vrmScale, cameraPosition: vrmPosition, modelSize: vrmModelSize } = storeToRefs(useVRM()) +const { scale: vrmScale, modelOffset: vrmPosition, modelSize: vrmModelSize } = storeToRefs(useVRM()) const { scale: live2dScale, position: live2dPosition } = storeToRefs(useLive2d()) const viewControlsValueX = computed({ diff --git a/packages/stage-ui/src/components/DataPane/Section.vue b/packages/stage-ui/src/components/DataPane/Container.vue similarity index 100% rename from packages/stage-ui/src/components/DataPane/Section.vue rename to packages/stage-ui/src/components/DataPane/Container.vue diff --git a/packages/stage-ui/src/components/DataPane/index.ts b/packages/stage-ui/src/components/DataPane/index.ts index 1c0182917..71eedb2a2 100644 --- a/packages/stage-ui/src/components/DataPane/index.ts +++ b/packages/stage-ui/src/components/DataPane/index.ts @@ -1,4 +1,4 @@ +export { default as Container } from './Container.vue' export { default as Pane } from './Pane.vue' export { default as PropertyNumber } from './PropertyNumber.vue' export { default as PropertyPoint } from './PropertyPoint.vue' -export { default as Section } from './Section.vue' diff --git a/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/VRM.vue b/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/VRM.vue index 6a35380ad..0567b3468 100644 --- a/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/VRM.vue +++ b/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/VRM.vue @@ -6,7 +6,7 @@ import { ref } from 'vue' import { useI18n } from 'vue-i18n' import { useVRM } from '../../../../stores' -import { PropertyNumber, PropertyPoint, Section } from '../../../DataPane' +import { Container, PropertyNumber, PropertyPoint } from '../../../DataPane' import { Callout } from '../../../Layouts' import { Button } from '../../../Misc' import { ColorPalette } from '../../../Widgets' @@ -71,7 +71,7 @@ function urlUploadClick() {