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

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.31",
3
+ "version": "2.0.0-alpha.33",
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.31",
23
- "@galacean/engine-rhi-webgl": "2.0.0-alpha.31",
24
- "@galacean/engine-math": "2.0.0-alpha.31"
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"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -14,7 +14,7 @@ export declare abstract class HierarchyParser<T extends Scene | PrefabResource,
14
14
  protected _reflectionParser: ReflectionParser;
15
15
  constructor(data: HierarchyFile, context: V);
16
16
  start(): void;
17
- /** Root entity indices for this hierarchy (scene.entities or [prefab.root]). */
17
+ /** Root entity indices for this hierarchy (scene.rootEntities or [prefab.root]). */
18
18
  protected abstract _getRootIndices(): number[];
19
19
  protected abstract _handleRootEntity(index: number): void;
20
20
  protected abstract _clearAndResolve(): Scene | PrefabResource;
@@ -8,7 +8,7 @@ export declare enum SpecularMode {
8
8
  export interface SceneFile extends HierarchyFile {
9
9
  scene: {
10
10
  name?: string;
11
- entities: number[];
11
+ rootEntities: number[];
12
12
  background: {
13
13
  mode: BackgroundMode;
14
14
  color: Vec4Tuple;