@urso/core 0.8.16 → 0.8.18

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urso/core",
3
- "version": "0.8.16",
3
+ "version": "0.8.18",
4
4
  "description": "HTML5 game engine",
5
5
  "main": "build/js/index.js",
6
6
  "author": "Megbrimef",
@@ -26,7 +26,7 @@
26
26
  "gsap": "^3.1.1",
27
27
  "howler": "^2.2.4",
28
28
  "pixi-particles": "^4.3.0",
29
- "pixi-projection": "0.3.15",
29
+ "pixi-projection": "0.4.3",
30
30
  "pixi-scrollbox": "^2.3.1",
31
31
  "pixi-spine": "^3.1.2",
32
32
  "pixi-viewport": "^4.34.0",
@@ -10,7 +10,7 @@ import { AtlasAttachmentLoader, SkeletonJson } from "@pixi-spine/runtime-3.8";
10
10
  window.PIXI.spine.AtlasAttachmentLoader = AtlasAttachmentLoader;
11
11
  window.PIXI.spine.SkeletonJson = SkeletonJson;
12
12
 
13
- require("pixi-projection");
13
+ window.PIXI.projection = require("pixi-projection");
14
14
 
15
15
  import { gsap } from 'gsap';
16
16
  window.gsap = gsap;
@@ -127,9 +127,9 @@ class ModulesObjectsModelsHitArea extends ModulesObjectsBaseModel {
127
127
  }
128
128
  }
129
129
 
130
- _onPressUpOutside() {
130
+ _onPressUpOutside(event) {
131
131
  if (this.handlePointerUpOutside) {
132
- this._onPressUp();
132
+ this._onPressUp(event);
133
133
  return;
134
134
  }
135
135