@galacean/engine-loader 1.1.2 → 1.1.6

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.
Files changed (51) hide show
  1. package/dist/main.js +728 -598
  2. package/dist/main.js.map +1 -1
  3. package/dist/miniprogram.js +728 -598
  4. package/dist/module.js +730 -601
  5. package/dist/module.js.map +1 -1
  6. package/package.json +5 -5
  7. package/types/GLTFContentRestorer.d.ts +7 -6
  8. package/types/gltf/GLTFUtils.d.ts +2 -7
  9. package/types/gltf/parser/GLTFMeshParser.d.ts +11 -6
  10. package/types/gltf/parser/GLTFParser.d.ts +1 -1
  11. package/types/gltf/parser/GLTFParserContext.d.ts +7 -6
  12. package/types/gltf/parser/index.d.ts +2 -1
  13. package/types/ktx2/KTX2Loader.d.ts +1 -1
  14. package/types/resource-deserialize/index.d.ts +8 -8
  15. package/types/resource-deserialize/resources/mesh/MeshDecoder.d.ts +1 -1
  16. package/types/resource-deserialize/resources/texture2D/TextureDecoder.d.ts +1 -1
  17. package/types/resource-deserialize/utils/Decorator.d.ts +1 -1
  18. package/types/PrimitiveMeshLoader.d.ts +0 -1
  19. package/types/gltf/GLTFParser.d.ts +0 -9
  20. package/types/gltf/GLTFPipeline.d.ts +0 -23
  21. package/types/gltf/GLTFUtil.d.ts +0 -53
  22. package/types/gltf/Schema.d.ts +0 -814
  23. package/types/gltf/extensions/EXT_meshopt_compression.d.ts +0 -13
  24. package/types/gltf/extensions/ExtensionParser.d.ts +0 -8
  25. package/types/gltf/extensions/KHR_materials_anisotropy.d.ts +0 -1
  26. package/types/gltf/extensions/MeshoptDecoder.d.ts +0 -8
  27. package/types/gltf/extensions/Schema.d.ts +0 -142
  28. package/types/gltf/parser/AnimationParser.d.ts +0 -7
  29. package/types/gltf/parser/BufferParser.d.ts +0 -7
  30. package/types/gltf/parser/EntityParser.d.ts +0 -9
  31. package/types/gltf/parser/MaterialParser.d.ts +0 -8
  32. package/types/gltf/parser/MeshParser.d.ts +0 -13
  33. package/types/gltf/parser/Parser.d.ts +0 -21
  34. package/types/gltf/parser/ParserContext.d.ts +0 -46
  35. package/types/gltf/parser/SceneParser.d.ts +0 -11
  36. package/types/gltf/parser/SkinParser.d.ts +0 -6
  37. package/types/gltf/parser/TextureParser.d.ts +0 -8
  38. package/types/gltf/parser/Validator.d.ts +0 -5
  39. package/types/ktx2/BinomialLLCTranscoder/BinomialLLCTranscoder.d.ts +0 -13
  40. package/types/ktx2/BinomialLLCTranscoder/TranscodeWorkerCode.d.ts +0 -33
  41. package/types/ktx2/KhronosTranscoder/KhronosTranscoder.d.ts +0 -17
  42. package/types/ktx2/KhronosTranscoder/TranscoderWorkerCode.d.ts +0 -34
  43. package/types/ktx2/TranscodeResult.d.ts +0 -10
  44. package/types/ktx2/constants.d.ts +0 -7
  45. package/types/ktx2/zstddec.d.ts +0 -62
  46. package/types/resource-deserialize/resources/parser/HierarchyParser.d.ts +0 -36
  47. package/types/resource-deserialize/resources/parser/ParserContext.d.ts +0 -29
  48. package/types/resource-deserialize/resources/prefab/PrefabDesign.d.ts +0 -70
  49. package/types/resource-deserialize/resources/prefab/PrefabParser.d.ts +0 -14
  50. package/types/resource-deserialize/resources/prefab/PrefabParserContext.d.ts +0 -5
  51. package/types/resource-deserialize/resources/prefab/ReflectionParser.d.ts +0 -14
@@ -1,5 +0,0 @@
1
- import { Entity } from "@galacean/engine-core";
2
- import { IPrefabFile } from "../schema";
3
- import { ParserContext } from "../parser/ParserContext";
4
- export declare class PrefabParserContext extends ParserContext<IPrefabFile, Entity> {
5
- }
@@ -1,14 +0,0 @@
1
- import { Engine, Entity } from "@galacean/engine-core";
2
- import { IBasicType, IClassObject, IEntity } from "./PrefabDesign";
3
- export declare class ReflectionParser {
4
- static customParseComponentHandles: Map<string, Function>;
5
- static registerCustomParseComponent(componentType: string, handle: Function): void;
6
- static parseEntity(entityConfig: IEntity, engine: Engine): Promise<Entity>;
7
- private static getEntityByConfig;
8
- static parseClassObject(item: IClassObject, engine: Engine, resourceManager?: any): Promise<any>;
9
- static parseBasicType(value: IBasicType, engine: Engine, resourceManager?: any): Promise<any>;
10
- static parsePropsAndMethods(instance: any, item: Omit<IClassObject, "class">, engine: Engine, resourceManager?: any): Promise<any>;
11
- static parseMethod(instance: any, methodName: string, methodParams: Array<IBasicType>, engine: Engine, resourceManager?: any): Promise<any>;
12
- private static _isClass;
13
- private static _isRef;
14
- }