@galacean/engine-loader 1.2.0-beta.7 → 1.2.0

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.2.0-beta.7",
3
+ "version": "1.2.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -15,9 +15,9 @@
15
15
  "types/**/*"
16
16
  ],
17
17
  "dependencies": {
18
- "@galacean/engine-math": "1.2.0-beta.7",
19
- "@galacean/engine-rhi-webgl": "1.2.0-beta.7",
20
- "@galacean/engine-core": "1.2.0-beta.7"
18
+ "@galacean/engine-core": "1.2.0",
19
+ "@galacean/engine-rhi-webgl": "1.2.0",
20
+ "@galacean/engine-math": "1.2.0"
21
21
  },
22
22
  "scripts": {
23
23
  "b:types": "tsc"
@@ -1 +0,0 @@
1
- export {};
@@ -1,2 +0,0 @@
1
- import { Component, Entity } from "@galacean/engine-core";
2
- export declare const ComponentMap: Record<string, new (entity: Entity) => Component>;
@@ -1,6 +0,0 @@
1
- import { Engine, Scene } from "@galacean/engine-core";
2
- import { IScene } from "../schema";
3
- import { ParserContext } from "./ParserContext";
4
- export declare abstract class CustomParser {
5
- onSceneParse(engine: Engine, context: ParserContext<IScene, Scene>, data: IScene): Promise<void>;
6
- }
@@ -1,5 +0,0 @@
1
- import { Entity } from "@galacean/engine-core";
2
- import type { IEntity } from "../schema";
3
- export declare class PrefabParser {
4
- static parseChildren(entitiesConfig: Map<string, IEntity>, entities: Map<string, Entity>, parentId: string): void;
5
- }
@@ -1,6 +0,0 @@
1
- import { Engine, Scene } from "@galacean/engine-core";
2
- import { IScene } from "../schema";
3
- export interface ISceneCustomParser {
4
- onBeforeParse(engine: Engine, data: IScene): void;
5
- onAfterParse(engine: Engine, data: IScene, scene: Scene): void;
6
- }