@galacean/engine-loader 2.0.0-alpha.34 → 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/dist/main.js +5 -25
- package/dist/main.js.map +1 -1
- package/dist/module.js +6 -26
- package/dist/module.js.map +1 -1
- package/package.json +4 -4
- package/types/gltf/parser/GLTFSceneParser.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-loader",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
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.
|
|
23
|
-
"@galacean/engine-math": "2.0.0-alpha.
|
|
24
|
-
"@galacean/engine-rhi-webgl": "2.0.0-alpha.
|
|
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
|
}
|