diff --git a/spine-ts/spine-webgl/src/SpineWebComponentWidget.ts b/spine-ts/spine-webgl/src/SpineWebComponentWidget.ts index 8b3c8d14b..2e2f94755 100644 --- a/spine-ts/spine-webgl/src/SpineWebComponentWidget.ts +++ b/spine-ts/spine-webgl/src/SpineWebComponentWidget.ts @@ -1781,7 +1781,7 @@ class SpineWebComponentOverlay extends HTMLElement implements OverlayAttributes, const skeleton = widget.skeleton!; widget.dragX += this.screenToWorldLength(dragX); widget.dragY -= this.screenToWorldLength(dragY); - skeleton.physicsTranslate(dragX, dragY); + skeleton.physicsTranslate(dragX, -dragY); ev?.preventDefault(); ev?.stopPropagation(); });