Skip to content

Commit 675cb4d

Browse files
committed
🐞 fix: rotation issue
1 parent a971d6c commit 675cb4d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/body.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ export function CreateTemplateBody() {
249249
)
250250
)
251251
),
252-
CreateGroup('left_shoulder_inner').add(
252+
CreateGroup('right_shoulder_inner').add(
253253
CreateJoint('right_shoulder', -width / 2, 0, 0).add(
254254
CreateJoint('right_elbow', 0, -25, 0).add(
255255
CreateJoint('right_wrist', 0, -25, 0).add(
@@ -258,7 +258,7 @@ export function CreateTemplateBody() {
258258
)
259259
)
260260
),
261-
CreateGroup('right_shoulder_inner').add(
261+
CreateGroup('left_shoulder_inner').add(
262262
CreateJoint('left_shoulder', width / 2, 0, 0).add(
263263
CreateJoint('left_elbow', 0, -25, 0).add(
264264
CreateJoint('left_wrist', 0, -25, 0).add(

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ const config: UserConfigFn = ({ command, mode, ssrBuild }) => {
115115
base: mode === 'online' ? '/open-pose-editor/' : './',
116116
define: {
117117
global: {},
118-
__APP_VERSION__: JSON.stringify('0.1.19'),
118+
__APP_VERSION__: JSON.stringify('0.1.20'),
119119
__APP_BUILD_TIME__: Date.now(),
120120
},
121121
build: {

0 commit comments

Comments
 (0)