@galacean/engine-loader 1.4.12 → 1.4.13

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": "1.4.12",
3
+ "version": "1.4.13",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -18,9 +18,9 @@
18
18
  "types/**/*"
19
19
  ],
20
20
  "dependencies": {
21
- "@galacean/engine-core": "1.4.12",
22
- "@galacean/engine-math": "1.4.12",
23
- "@galacean/engine-rhi-webgl": "1.4.12"
21
+ "@galacean/engine-core": "1.4.13",
22
+ "@galacean/engine-math": "1.4.13",
23
+ "@galacean/engine-rhi-webgl": "1.4.13"
24
24
  },
25
25
  "scripts": {
26
26
  "b:types": "tsc"
@@ -1,11 +1,8 @@
1
- import { BlinnPhongMaterial, Engine, Material, PBRMaterial, PBRSpecularMaterial, UnlitMaterial } from "@galacean/engine-core";
1
+ import { Material, PBRMaterial, PBRSpecularMaterial, UnlitMaterial } from "@galacean/engine-core";
2
2
  import { IMaterial, ITextureInfo } from "../GLTFSchema";
3
3
  import { GLTFParser } from "./GLTFParser";
4
4
  import { GLTFParserContext } from "./GLTFParserContext";
5
5
  export declare class GLTFMaterialParser extends GLTFParser {
6
- /** @internal */
7
- static _getDefaultMaterial(engine: Engine): BlinnPhongMaterial;
8
- private static _defaultMaterial;
9
6
  /**
10
7
  * @internal
11
8
  */
@@ -20,6 +20,7 @@ export declare class GLTFParserContext {
20
20
  needAnimatorController: boolean;
21
21
  private _resourceCache;
22
22
  private _progress;
23
+ private _defaultMaterial;
23
24
  /** @internal */
24
25
  _setTaskCompleteProgress: (loaded: number, total: number) => void;
25
26
  /** @internal */