@galacean/engine-spine 0.0.0-experimental-2024071102 → 0.0.0-experimental-2024071103

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,5 +1,5 @@
1
1
  {
2
- "version": "0.0.0-experimental-2024071102",
2
+ "version": "0.0.0-experimental-2024071103",
3
3
  "description": "galacean spine runtime",
4
4
  "name": "@galacean/engine-spine",
5
5
  "main": "dist/main.js",
@@ -1,4 +1,4 @@
1
- import { Texture2D, SubPrimitive, Vector3 } from "@galacean/engine";
1
+ import { Texture2D, SubPrimitive, BoundingBox } from "@galacean/engine";
2
2
  import { Skeleton, Color, BlendMode, SkeletonData } from "@esotericsoftware/spine-core";
3
3
  import { SpineAnimation } from "./SpineAnimation";
4
4
  import { AdaptiveTexture } from "./loader/LoaderUtils";
@@ -21,10 +21,7 @@ export declare class SpineGenerator {
21
21
  static tempTexture: AdaptiveTexture | null;
22
22
  static subPrimitivePool: ReturnablePool<SubPrimitive>;
23
23
  static subRenderItemPool: ClearablePool<SubRenderItem>;
24
- bounds: {
25
- min: Vector3;
26
- max: Vector3;
27
- };
24
+ static bounds: BoundingBox;
28
25
  private _clipper;
29
26
  private _subRenderItems;
30
27
  private _separateSlots;