view3d-core 1.1.2 → 1.1.3
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 +29 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -21,9 +21,38 @@ export { GizmoPlugin } from './plugins/gizmo';
|
|
|
21
21
|
export { EnvironmentPlugin } from './plugins/environment';
|
|
22
22
|
export { SerializationPlugin } from './plugins/serialization';
|
|
23
23
|
export { GUIPlugin } from './plugins/gui';
|
|
24
|
+
export { SceneConfigPlugin } from './plugins/sceneConfig/SceneConfigPlugin';
|
|
25
|
+
export type { SceneConfigPluginOptions, SceneConfigAppliedEventData, AppliedConfigSections, SceneConfigLoadEventData, SceneConfigApplyEventData, SceneConfigLoadedEventData, SceneConfigErrorEventData } from './plugins/sceneConfig/SceneConfigPlugin';
|
|
26
|
+
export { SceneConfigManager } from './plugins/sceneConfig/SceneConfigManager';
|
|
27
|
+
export type { ISceneConfigManager, SceneConfigSource, SceneConfigManagerOptions, ExportOptions, ImportOptions, ImportResult, BatchExportResult, BatchImportResult } from './plugins/sceneConfig/SceneConfigManager';
|
|
28
|
+
export type { ExportOptions as SceneConfigExportOptions, ImportOptions as SceneConfigImportOptions, ImportResult as SceneConfigImportResult } from './plugins/sceneConfig/SceneConfigManager';
|
|
29
|
+
export type { SceneConfig, IThreeEngine, SceneListItem, ValidationResult, ValidationError, SceneCategory, ConfigMetadata, FogConfig as SceneFogConfig, SceneOptimizationConfig, SceneSettings, CameraConfig as SceneCameraConfig, RendererConfig as SceneRendererConfig, OrbitControlsConfig as SceneOrbitControlsConfig, TransformControlsConfig as SceneTransformControlsConfig, LightConfig, MaterialConfig as SceneMaterialConfig, ModelConfig, ModelInfo, ModelGroupConfig, ModelSettings, EffectComposerConfig, AnimationsConfig, HandlerConfig, HelpersConfig, GeoMapConfig, ParticleConfig as SceneParticleConfig, DrawConfig, TextMeshConfig, DesignMeshConfig, BorderGroupConfig, MediaCoreConfig, ClippingConfig, OtherConfig } from './plugins/sceneConfig/types';
|
|
30
|
+
export { ConfigLoader, ConfigLoaderError } from './plugins/sceneConfig/ConfigLoader';
|
|
31
|
+
export type { IConfigLoader, ConfigLoaderOptions, ConfigLoaderErrorType } from './plugins/sceneConfig/ConfigLoader';
|
|
32
|
+
export { ConfigParser } from './plugins/sceneConfig/ConfigParser';
|
|
33
|
+
export type { IConfigParser } from './plugins/sceneConfig/ConfigParser';
|
|
34
|
+
export { ConfigApplier } from './plugins/sceneConfig/ConfigApplier';
|
|
35
|
+
export type { IConfigApplier } from './plugins/sceneConfig/ConfigApplier';
|
|
36
|
+
export { CacheManager } from './plugins/sceneConfig/CacheManager';
|
|
37
|
+
export type { ICacheManager, CacheOptions, CacheStats } from './plugins/sceneConfig/CacheManager';
|
|
38
|
+
export { PluginRegistry, PluginState, PluginValidationException } from './plugins/sceneConfig/PluginRegistry';
|
|
39
|
+
export type { PluginRegistryOptions, PluginStateType } from './plugins/sceneConfig/PluginRegistry';
|
|
40
|
+
export { ShaderPlugin as SceneShaderPlugin, ShaderValidationException } from './plugins/sceneConfig/ShaderPlugin';
|
|
41
|
+
export type { IShaderPlugin } from './plugins/sceneConfig/ShaderPlugin';
|
|
24
42
|
export * from './utils';
|
|
25
43
|
export { loadModelFromFile, selectModelFile, calculateBestCameraPosition, isSupportedFormat, getSupportedFormats } from './utils/fileLoader';
|
|
26
44
|
export type { SupportedModelFormat, FileLoaderConfig, FileLoadProgress, FileLoadResult } from './utils/fileLoader';
|
|
27
45
|
export type { EngineConfig, RendererConfig, CameraConfig, ComposerConfig, OrbitControllerConfig, TransformControllerConfig, LoaderConfig, EditorPluginConfig, ThreeEditorConfig, ScreenshotOptions } from './types/config.types';
|
|
28
46
|
export type { HandlerMode, ModelType, DrawMode, PointMode, ParticleSportType, RenderWay, LoaderService, RootInfo, ClickInfo, ViewAngle, Box3Info, TransformInfo, CurveAnimationController, AnimationPlayParams, ExtendedObject3D, GeoInfo, RaycastResult, GsapQuery } from './types/core.types';
|
|
29
47
|
export type { EventMap, EventCallback, Unsubscribe } from './types/event.types';
|
|
48
|
+
export type { ShaderPluginConfig, GeoMapPluginConfig, ParticlePluginConfig, PhysicsPluginConfig } from './types/config.types';
|
|
49
|
+
export type { ShaderPreset } from './plugins/shader';
|
|
50
|
+
export type { AnimationPluginConfig } from './plugins/animation';
|
|
51
|
+
export type { DrawingPluginConfig } from './plugins/drawing';
|
|
52
|
+
export type { GeometryPluginConfig } from './plugins/geometry';
|
|
53
|
+
export type { MaterialPluginConfig } from './plugins/material';
|
|
54
|
+
export type { TextPluginConfig, TextConfig } from './plugins/text';
|
|
55
|
+
export type { GizmoPluginConfig } from './plugins/gizmo';
|
|
56
|
+
export type { EnvironmentPluginConfig, FogConfig, SkyboxConfig } from './plugins/environment';
|
|
57
|
+
export type { SerializationPluginConfig, SerializedScene, SerializedObject } from './plugins/serialization';
|
|
58
|
+
export type { GUIPluginConfig } from './plugins/gui';
|