@galacean/engine-loader 2.0.0-alpha.33 → 2.0.0-alpha.35

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": "@galacean/engine-loader",
3
- "version": "2.0.0-alpha.33",
3
+ "version": "2.0.0-alpha.35",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -19,9 +19,9 @@
19
19
  "libs/**/*"
20
20
  ],
21
21
  "dependencies": {
22
- "@galacean/engine-core": "2.0.0-alpha.33",
23
- "@galacean/engine-rhi-webgl": "2.0.0-alpha.33",
24
- "@galacean/engine-math": "2.0.0-alpha.33"
22
+ "@galacean/engine-core": "2.0.0-alpha.35",
23
+ "@galacean/engine-math": "2.0.0-alpha.35",
24
+ "@galacean/engine-rhi-webgl": "2.0.0-alpha.35"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -2,10 +2,10 @@ import { AssetPromise, Entity } from "@galacean/engine-core";
2
2
  import { GLTFParser } from "./GLTFParser";
3
3
  import { GLTFParserContext } from "./GLTFParserContext";
4
4
  export declare class GLTFSceneParser extends GLTFParser {
5
+ private static _tempMatrix;
5
6
  parse(context: GLTFParserContext, index: number): AssetPromise<Entity>;
6
7
  private _parseEntityComponent;
7
8
  private _createCamera;
8
9
  private _createRenderer;
9
10
  private _computeLocalBounds;
10
- private _computeApproximateBindMatrix;
11
11
  }
@@ -3,5 +3,9 @@ import { GLTFParser } from "./GLTFParser";
3
3
  import { GLTFParserContext } from "./GLTFParserContext";
4
4
  export declare class GLTFSkinParser extends GLTFParser {
5
5
  parse(context: GLTFParserContext, index: number): AssetPromise<Skin>;
6
+ /**
7
+ * Resolve the skeleton rootBone as the lowest common ancestor of the joints' parent chains.
8
+ * Returns null when joints share no common ancestor.
9
+ */
6
10
  private _findSkeletonRootBone;
7
11
  }