@quinninc/pixi-transformer 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -258,6 +258,8 @@ export class Transformer extends Pixi.Container {
258
258
  }
259
259
  // --- Trigger onMoveEnd Callback ---
260
260
  const scale = Math.min(that.scale.x, that.scale.y) || 1;
261
+ console.log("this.dragDistance - ", this.dragDistance);
262
+ console.log("that.movedThreshold / scale - ", that.movedThreshold / scale);
261
263
  if (wasDragging &&
262
264
  this.dragDistance > that.movedThreshold / scale &&
263
265
  that.target &&
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quinninc/pixi-transformer",
3
3
  "private": false,
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "repository": {
6
6
  "url": "https://github.com/Quinn-Care-Private-Limited/pixi-transformer"
7
7
  },