Skip to content

Commit

Permalink
🐞 fix: rotation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhUyU1997 committed Apr 23, 2023
1 parent a971d6c commit 675cb4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export function CreateTemplateBody() {
)
)
),
CreateGroup('left_shoulder_inner').add(
CreateGroup('right_shoulder_inner').add(
CreateJoint('right_shoulder', -width / 2, 0, 0).add(
CreateJoint('right_elbow', 0, -25, 0).add(
CreateJoint('right_wrist', 0, -25, 0).add(
Expand All @@ -258,7 +258,7 @@ export function CreateTemplateBody() {
)
)
),
CreateGroup('right_shoulder_inner').add(
CreateGroup('left_shoulder_inner').add(
CreateJoint('left_shoulder', width / 2, 0, 0).add(
CreateJoint('left_elbow', 0, -25, 0).add(
CreateJoint('left_wrist', 0, -25, 0).add(
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const config: UserConfigFn = ({ command, mode, ssrBuild }) => {
base: mode === 'online' ? '/open-pose-editor/' : './',
define: {
global: {},
__APP_VERSION__: JSON.stringify('0.1.19'),
__APP_VERSION__: JSON.stringify('0.1.20'),
__APP_BUILD_TIME__: Date.now(),
},
build: {
Expand Down

0 comments on commit 675cb4d

Please sign in to comment.