We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc05e1e commit 019ccafCopy full SHA for 019ccaf
1 file changed
packages/stage-layouts/src/components/Layouts/ViewControls/Inputs.vue
@@ -20,7 +20,7 @@ const viewControlsValueX = computed({
20
case 'live2d':
21
return live2dPosition.value.x
22
case 'vrm':
23
- return vrmPosition.value.x
+ return vrmPosition.value.x * 100
24
default:
25
return 0
26
}
@@ -31,7 +31,7 @@ const viewControlsValueX = computed({
31
live2dPosition.value.x = value
32
break
33
34
- vrmPosition.value.x = value
+ vrmPosition.value.x = value / 100
35
36
37
@@ -64,7 +64,7 @@ const viewControlsValueY = computed({
64
live2dPosition.value.y = -value
65
66
67
- vrmPosition.value.y = value * 0.01
+ vrmPosition.value.y = value / 100
68
69
70
0 commit comments