@eva/plugin-renderer-spine 2.0.2 → 2.1.0-beta.1

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.
@@ -12521,6 +12521,10 @@ var SpinePipe = class {
12521
12521
  }
12522
12522
  }
12523
12523
  destroyRenderable(spine) {
12524
+ if (!this.gpuSpineData) {
12525
+ spine.off("destroyed", this._destroyRenderableBound);
12526
+ return;
12527
+ }
12524
12528
  this.gpuSpineData[spine.uid] = null;
12525
12529
  spine.off("destroyed", this._destroyRenderableBound);
12526
12530
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eva/plugin-renderer-spine",
3
- "version": "2.0.2",
3
+ "version": "2.1.0-beta.1",
4
4
  "description": "@eva/plugin-renderer-spine",
5
5
  "main": "index.js",
6
6
  "module": "dist/plugin-renderer-spine.esm.js",
@@ -18,10 +18,10 @@
18
18
  "license": "MIT",
19
19
  "homepage": "https://eva.js.org",
20
20
  "dependencies": {
21
- "@eva/inspector-decorator": "^0.0.5",
22
- "@eva/plugin-renderer": "2.0.2",
23
- "@eva/eva.js": "2.0.2",
24
- "@eva/spine-base": "2.0.2",
21
+ "@eva/inspector-decorator": "^2.0.0-beta.0",
22
+ "@eva/plugin-renderer": "2.1.0-beta.1",
23
+ "@eva/eva.js": "2.1.0-beta.1",
24
+ "@eva/spine-base": "2.1.0-beta.1",
25
25
  "pixi.js": "^8.17.0"
26
26
  }
27
27
  }