gltf-parser-plugin 1.0.0 → 1.0.2

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/index.d.ts DELETED
@@ -1,34 +0,0 @@
1
- export declare class GLTFParserPlugin {
2
- name: string;
3
- private tiles;
4
- private _loader;
5
- private readonly _gltfRegex;
6
- private readonly _options;
7
- /**
8
- * 创建 GLTFParserPlugin 实例
9
- * @param options 配置选项
10
- */
11
- constructor(options?: GLTFParserPluginOptions);
12
- /**
13
- * 插件初始化,由 TilesRenderer 调用
14
- */
15
- init(tiles: any): void;
16
- /**
17
- * 插件销毁
18
- */
19
- dispose(): void;
20
- }
21
-
22
- /**
23
- * GLTFParserPlugin 配置选项
24
- */
25
- declare interface GLTFParserPluginOptions {
26
- /**
27
- * 是否启用 metadata 支持
28
- * 包括 EXT_mesh_features 和 EXT_structural_metadata 扩展
29
- * @default true
30
- */
31
- metadata?: boolean;
32
- }
33
-
34
- export { }