@babylonjs/inspector 9.25.0 → 9.26.1
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/bin/inspector-bridge.mjs +3 -1
- package/bin/inspector-cli.mjs +3 -1
- package/lib/browser-CANgtOiM.js.map +1 -1
- package/lib/components/explorer/explorer.d.ts +40 -0
- package/lib/components/{scene/sceneExplorerDragDrop.d.ts → explorer/explorerDragDrop.d.ts} +8 -8
- package/lib/components/explorer/explorerModel.d.ts +359 -0
- package/lib/components/properties/boundProperty.d.ts +31 -0
- package/lib/components/properties/metadataProperties.d.ts +5 -1
- package/lib/components/scene/sceneExplorer.d.ts +10 -124
- package/lib/contexts/watcherContext.d.ts +11 -0
- package/lib/{extensionsListService-CKrN2x5A.js → extensionsListService-2sqR5MRD.js} +13 -14
- package/lib/{extensionsListService-CKrN2x5A.js.map → extensionsListService-2sqR5MRD.js.map} +1 -1
- package/lib/gif-5DieAkSF.js.map +1 -1
- package/lib/hooks/pollingHooks.d.ts +3 -0
- package/lib/{index-CgagLRQT.js → index-DvyGGbVg.js} +24463 -23694
- package/lib/index-DvyGGbVg.js.map +1 -0
- package/lib/index.common.d.ts +88 -0
- package/lib/index.d.ts +2 -87
- package/lib/index.js +15 -16
- package/lib/index.js.map +1 -1
- package/lib/inspector.common.d.ts +38 -0
- package/lib/inspector.d.ts +3 -39
- package/lib/inspectorHost.d.ts +26 -0
- package/lib/lite/components/properties/cameraProperties.d.ts +11 -0
- package/lib/lite/components/properties/lightProperties.d.ts +33 -0
- package/lib/lite/components/properties/sceneNodeProperties.d.ts +8 -0
- package/lib/lite/engineContext.d.ts +20 -0
- package/lib/lite/engineExplorerService.d.ts +75 -0
- package/lib/lite/engineSelectionService.d.ts +11 -0
- package/lib/lite/explorerDisplayInfo.d.ts +12 -0
- package/lib/lite/extensionsListService-BP2ToO_O.js +214 -0
- package/lib/lite/extensionsListService-BP2ToO_O.js.map +1 -0
- package/lib/lite/index-6eEEtyAL.js +9687 -0
- package/lib/lite/index-6eEEtyAL.js.map +1 -0
- package/lib/lite/index.d.ts +6 -0
- package/lib/lite/index.js +19 -0
- package/lib/lite/index.js.map +1 -0
- package/lib/lite/inspector.d.ts +9 -0
- package/lib/lite/sceneEntityUtils.d.ts +19 -0
- package/lib/lite/services/panes/properties/cameraPropertiesService.d.ts +3 -0
- package/lib/lite/services/panes/properties/enginePropertiesService.d.ts +4 -0
- package/lib/lite/services/panes/properties/lightPropertiesService.d.ts +3 -0
- package/lib/lite/services/panes/properties/materialPropertiesService.d.ts +3 -0
- package/lib/lite/services/panes/properties/meshPropertiesService.d.ts +3 -0
- package/lib/lite/services/panes/properties/renderingContextPropertiesService.d.ts +4 -0
- package/lib/lite/services/panes/properties/sceneNodePropertiesService.d.ts +3 -0
- package/lib/lite/services/panes/properties/shadowGeneratorPropertiesService.d.ts +4 -0
- package/lib/lite/services/panes/properties/textLayerPropertiesService.d.ts +4 -0
- package/lib/lite/services/panes/properties/texturePropertiesService.d.ts +3 -0
- package/lib/lite/services/panes/scene/cameraExplorerService.d.ts +7 -0
- package/lib/lite/services/panes/scene/lightExplorerService.d.ts +6 -0
- package/lib/lite/services/panes/scene/materialExplorerService.d.ts +4 -0
- package/lib/lite/services/panes/scene/meshExplorerService.d.ts +7 -0
- package/lib/lite/services/panes/scene/sceneExplorerSection.d.ts +21 -0
- package/lib/lite/services/panes/scene/sceneResources.d.ts +13 -0
- package/lib/lite/services/panes/scene/sceneSelectionUtils.d.ts +3 -0
- package/lib/lite/services/panes/scene/shadowGeneratorExplorerService.d.ts +6 -0
- package/lib/lite/services/panes/scene/textLayerExplorerService.d.ts +3 -0
- package/lib/lite/services/panes/scene/textureExplorerService.d.ts +3 -0
- package/lib/{quickCreateToolsService-C-GqDTqc.js → quickCreateToolsService-B0RAjMcI.js} +14 -15
- package/lib/{quickCreateToolsService-C-GqDTqc.js.map → quickCreateToolsService-B0RAjMcI.js.map} +1 -1
- package/lib/{reflectorService-CPunL_Qs.js → reflectorService-CUFxJIMt.js} +16 -17
- package/lib/{reflectorService-CPunL_Qs.js.map → reflectorService-CUFxJIMt.js.map} +1 -1
- package/lib/services/panes/explorer/explorerPane.d.ts +79 -0
- package/lib/services/panes/explorer/explorerService.d.ts +80 -0
- package/lib/services/panes/scene/sceneExplorerService.d.ts +7 -2
- package/lib/services/sceneSelectionService.d.ts +11 -0
- package/lib/services/selectionService.d.ts +5 -2
- package/lib/services/watcherService.d.ts +46 -3
- package/package.json +12 -1
- package/readme.md +10 -0
- package/lib/index-CgagLRQT.js.map +0 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "../index.common";
|
|
2
|
+
export { ShowInspector } from "./inspector";
|
|
3
|
+
export type { IEngineContext } from "./engineContext";
|
|
4
|
+
export { EngineContextIdentity } from "./engineContext";
|
|
5
|
+
export type { IEngineExplorerService, RenderingContextNodeProvider, RenderingContextPresentation, RenderingContextPresentationProvider } from "./engineExplorerService";
|
|
6
|
+
export { EngineExplorerServiceIdentity } from "./engineExplorerService";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export { A as Accordion, a as AccordionSection, b as AccordionSectionItem, B as BooleanBadgePropertyLine, c as BridgeCommandRegistryIdentity, d as BuiltInsExtensionFeed, e as Button, f as ButtonLine, C as Checkbox, g as CheckboxPropertyLine, h as ChildWindow, i as Collapse, j as ComboBox, k as ComboBoxPropertyLine, l as ConstructorFactory, D as DraggableLine, m as Dropdown, E as EngineContextIdentity, n as EngineExplorerServiceIdentity, o as EntitySelector, p as ErrorBoundary, q as ExplorerServiceIdentity, r as ExtensibleAccordion, F as FileUploadLine, G as GetPropertyDescriptor, H as HexPropertyLine, I as InfoLabel, s as InterceptFunction, t as InterceptProperty, v as IsPropertyReadonly, w as LineContainer, L as Link, x as LinkPropertyLine, y as List, M as MakeDialogTeachingMoment, z as MakeLazyComponent, J as MakeModularBridge, K as MakeModularTool, N as MakePopoverTeachingMoment, O as MakeTeachingMoment, P as MessageBar, Q as NumberDropdown, R as NumberDropdownPropertyLine, T as NumberInputPropertyLine, U as ObservableCollection, V as Pane, W as PlaceholderPropertyLine, X as Popover, Y as PositionedPopover, Z as PropertiesServiceIdentity, _ as PropertyContext, $ as PropertyLine, a0 as SearchBar, a1 as SearchBox, a2 as SelectionServiceDefinition, a3 as SelectionServiceIdentity, a4 as SettingsServiceIdentity, a5 as SettingsStore, a6 as SettingsStoreIdentity, S as ShellServiceIdentity, a7 as ShowInspector, a8 as SidePaneContainer, a9 as Slider, aa as SpinButton, ab as SpinButtonPropertyLine, ac as StringDropdown, ad as StringDropdownPropertyLine, ae as StringifiedPropertyLine, af as Switch, ag as SwitchPropertyLine, ah as SyncedSliderInput, ai as SyncedSliderPropertyLine, aj as TeachingMoment, ak as TextAreaPropertyLine, al as TextInput, am as TextInputPropertyLine, an as TextPropertyLine, ao as Textarea, ap as Theme, aq as ThemeServiceIdentity, ar as ToastProvider, as as ToggleButton, at as Tooltip, au as UploadButton, av as WatcherServiceIdentity, aw as useAngleConverters, ax as useAsyncResource, ay as useEventListener, az as useEventfulState, aA as useInterceptObservable, aB as useKeyListener, aC as useKeyState, aD as useObservableCollection, aE as useObservableState, aF as useOrderedObservableCollection, aG as usePollingObservable, aH as usePropertyChangedNotifier, aI as useResource, aJ as useTheme, aK as useThemeMode, aL as useToast } from './index-6eEEtyAL.js';
|
|
2
|
+
import '@babylonjs/core/Misc/observable.js';
|
|
3
|
+
import 'react/jsx-runtime';
|
|
4
|
+
import 'react';
|
|
5
|
+
import '@fluentui/react-components';
|
|
6
|
+
import '@fluentui/react-icons';
|
|
7
|
+
import '@babylonjs/core/Misc/dataStorage.js';
|
|
8
|
+
import '@babylonjs/core/Misc/asyncLock.js';
|
|
9
|
+
import '@babylonjs/core/Misc/deferred.js';
|
|
10
|
+
import '@fluentui-contrib/react-resize-handle';
|
|
11
|
+
import '@fluentui/react-motion-components-preview';
|
|
12
|
+
import '@babylonjs/core/Misc/logger.js';
|
|
13
|
+
import 'react-dom/client';
|
|
14
|
+
import '@babylonjs/lite';
|
|
15
|
+
import '@fluentui-contrib/react-virtualizer';
|
|
16
|
+
import '@babylonjs/core/Misc/uniqueIdGenerator.js';
|
|
17
|
+
import '@babylonjs/core/Maths/math.color.js';
|
|
18
|
+
import '@babylonjs/core/Maths/math.vector.js';
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type EngineContext } from "@babylonjs/lite";
|
|
2
|
+
import { type InspectorOptions, type InspectorToken } from "../inspector.common";
|
|
3
|
+
/**
|
|
4
|
+
* Shows Inspector for a Babylon Lite engine.
|
|
5
|
+
* @param engine The Babylon Lite engine to inspect.
|
|
6
|
+
* @param options Optional configuration for Inspector.
|
|
7
|
+
* @returns An {@link InspectorToken} that can be disposed to hide Inspector.
|
|
8
|
+
*/
|
|
9
|
+
export declare function ShowInspector(engine: EngineContext, options?: Partial<InspectorOptions>): InspectorToken;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type ArcRotateCamera, type Camera, type DirectionalLight, type EngineContext, type FreeCamera, type HemisphericLight, type LightBase, type Mesh, type PointLight, type Quat, type SceneContext, type SceneNode, type ShadowGenerator, type SpotLight, type Vec3 } from "@babylonjs/lite";
|
|
2
|
+
export declare function GetSceneContexts(engine: EngineContext): readonly SceneContext[];
|
|
3
|
+
export declare function IsSceneNode(entity: unknown): entity is SceneNode;
|
|
4
|
+
export declare function IsMesh(entity: unknown): entity is Mesh;
|
|
5
|
+
export declare function IsCamera(entity: unknown): entity is Camera;
|
|
6
|
+
export declare function IsArcRotateCamera(entity: unknown): entity is ArcRotateCamera;
|
|
7
|
+
export declare function IsFreeCamera(entity: unknown): entity is FreeCamera;
|
|
8
|
+
export declare function IsLight(entity: unknown): entity is LightBase;
|
|
9
|
+
export declare function IsDirectionalLight(entity: unknown): entity is DirectionalLight;
|
|
10
|
+
export declare function IsPointLight(entity: unknown): entity is PointLight;
|
|
11
|
+
export declare function IsSpotLight(entity: unknown): entity is SpotLight;
|
|
12
|
+
export declare function IsHemisphericLight(entity: unknown): entity is HemisphericLight;
|
|
13
|
+
export declare function GetSceneNodes(scene: SceneContext): readonly SceneNode[];
|
|
14
|
+
export declare function GetSceneNodeRoots(scene: SceneContext): readonly SceneNode[];
|
|
15
|
+
export declare function IsSceneNodeDescendantOf(node: SceneNode, ancestor: object): boolean;
|
|
16
|
+
export declare function SetVector3Value(target: Vec3, value: Vec3 | readonly [number, number, number]): void;
|
|
17
|
+
export declare function SetQuaternionValue(target: Quat, value: Quat | readonly [number, number, number, number]): void;
|
|
18
|
+
export declare function GetLightDisplayName(light: LightBase, index: number): string;
|
|
19
|
+
export declare function GetShadowGeneratorDisplayName(scene: SceneContext, shadowGenerator: ShadowGenerator): string;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
export declare const CameraPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
4
|
+
export declare const EnginePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, IEngineContext]>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
export declare const LightPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
export declare const MaterialPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
export declare const MeshPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
4
|
+
export declare const RenderingContextPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, IEngineContext]>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
export declare const SceneNodePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
3
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
4
|
+
export declare const ShadowGeneratorPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, IEngineContext]>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
4
|
+
export declare const TextLayerPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, IEngineContext]>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IPropertiesService } from "../../../../services/panes/properties/propertiesService";
|
|
3
|
+
export declare const TexturePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IEngineExplorerService } from "../../../engineExplorerService";
|
|
3
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
4
|
+
import { type IExplorerService } from "../../../../services/panes/explorer/explorerService";
|
|
5
|
+
import { type ISelectionService } from "../../../../services/selectionService";
|
|
6
|
+
import { type IWatcherService } from "../../../../services/watcherService";
|
|
7
|
+
export declare const CameraExplorerServiceDefinition: ServiceDefinition<[], [IEngineExplorerService, IExplorerService, IWatcherService, ISelectionService, IEngineContext]>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IEngineExplorerService } from "../../../engineExplorerService";
|
|
3
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
4
|
+
import { type IExplorerService } from "../../../../services/panes/explorer/explorerService";
|
|
5
|
+
import { type ISelectionService } from "../../../../services/selectionService";
|
|
6
|
+
export declare const LightExplorerServiceDefinition: ServiceDefinition<[], [IEngineExplorerService, IExplorerService, ISelectionService, IEngineContext]>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IEngineExplorerService } from "../../../engineExplorerService";
|
|
3
|
+
import { type IWatcherService } from "../../../../services/watcherService";
|
|
4
|
+
export declare const MaterialExplorerServiceDefinition: ServiceDefinition<[], [IEngineExplorerService, IWatcherService]>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IEngineExplorerService } from "../../../engineExplorerService";
|
|
3
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
4
|
+
import { type IExplorerService } from "../../../../services/panes/explorer/explorerService";
|
|
5
|
+
import { type ISelectionService } from "../../../../services/selectionService";
|
|
6
|
+
import { type IWatcherService } from "../../../../services/watcherService";
|
|
7
|
+
export declare const MeshExplorerServiceDefinition: ServiceDefinition<[], [IEngineExplorerService, IExplorerService, IWatcherService, ISelectionService, IEngineContext]>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type RenderingContext, type SceneContext } from "@babylonjs/lite";
|
|
2
|
+
import { type ComponentType } from "react";
|
|
3
|
+
import { type ExplorerDisplayInfo, type ExplorerNodeDescription } from "../../../../components/explorer/explorerModel";
|
|
4
|
+
/**
|
|
5
|
+
* Returns whether a rendering context is a scene context.
|
|
6
|
+
* @param context The rendering context to test.
|
|
7
|
+
* @returns Whether the context is a scene context.
|
|
8
|
+
*/
|
|
9
|
+
export declare function IsSceneContext(context: RenderingContext): context is SceneContext;
|
|
10
|
+
/**
|
|
11
|
+
* Creates an Explorer section containing the supplied scene entities.
|
|
12
|
+
* @param id The stable section identifier.
|
|
13
|
+
* @param displayName The section's display name.
|
|
14
|
+
* @param entities The entities displayed by the section.
|
|
15
|
+
* @param getEntityDisplayInfo Gets the display information for an entity.
|
|
16
|
+
* @param entityIcon The optional icon component for the entities.
|
|
17
|
+
* @returns The Explorer node description for the section.
|
|
18
|
+
*/
|
|
19
|
+
export declare function CreateSceneExplorerSectionNode<T extends object>(id: string, displayName: string, entities: readonly T[], getEntityDisplayInfo: (entity: T, index: number) => ExplorerDisplayInfo, entityIcon?: ComponentType<{
|
|
20
|
+
entity: object;
|
|
21
|
+
}>): ExplorerNodeDescription;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type Material, type SceneContext, type Texture2D } from "@babylonjs/lite";
|
|
2
|
+
/**
|
|
3
|
+
* Gets the unique materials referenced by a scene's meshes.
|
|
4
|
+
* @param scene The scene to inspect.
|
|
5
|
+
* @returns The referenced materials in mesh order.
|
|
6
|
+
*/
|
|
7
|
+
export declare function GetSceneMaterials(scene: SceneContext): readonly Material[];
|
|
8
|
+
/**
|
|
9
|
+
* Gets the unique textures referenced by a scene's materials.
|
|
10
|
+
* @param scene The scene to inspect.
|
|
11
|
+
* @returns The referenced textures in material order.
|
|
12
|
+
*/
|
|
13
|
+
export declare function GetSceneTextures(scene: SceneContext): readonly Texture2D[];
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
2
|
+
import { type ISelectionService } from "../../../../services/selectionService";
|
|
3
|
+
export declare function ClearRemovedSelection(selectionService: ISelectionService, engineContext: IEngineContext, selectionWasRemoved: boolean): void;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IEngineExplorerService } from "../../../engineExplorerService";
|
|
3
|
+
import { type IEngineContext } from "../../../engineContext";
|
|
4
|
+
import { type IExplorerService } from "../../../../services/panes/explorer/explorerService";
|
|
5
|
+
import { type ISelectionService } from "../../../../services/selectionService";
|
|
6
|
+
export declare const ShadowGeneratorExplorerServiceDefinition: ServiceDefinition<[], [IEngineExplorerService, IExplorerService, ISelectionService, IEngineContext]>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type IEngineExplorerService } from "../../../engineExplorerService";
|
|
2
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
3
|
+
export declare const TextLayerExplorerServiceDefinition: ServiceDefinition<[], [IEngineExplorerService]>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type ServiceDefinition } from "@babylonjs/shared-ui-components/modularTool/modularity/serviceDefinition.js";
|
|
2
|
+
import { type IEngineExplorerService } from "../../../engineExplorerService";
|
|
3
|
+
export declare const TextureExplorerServiceDefinition: ServiceDefinition<[], [IEngineExplorerService]>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
2
|
-
import { P as Popover, a as useToast, b as useInterceptObservable, B as Button, c as LinkToEntity, T as TextInputPropertyLine, d as SpinButtonPropertyLine, C as CheckboxPropertyLine, V as Vector3PropertyLine, e as useProperty, M as MessageBar, S as ShellServiceIdentity, f as SceneContextIdentity, g as SelectionServiceIdentity, h as useObservableState, A as Accordion, i as AccordionSection } from './index-
|
|
2
|
+
import { P as Popover, a as useToast, b as useInterceptObservable, B as Button, c as LinkToEntity, T as TextInputPropertyLine, d as SpinButtonPropertyLine, C as CheckboxPropertyLine, V as Vector3PropertyLine, e as useProperty, M as MessageBar, S as ShellServiceIdentity, f as SceneContextIdentity, g as SelectionServiceIdentity, h as useObservableState, A as Accordion, i as AccordionSection } from './index-DvyGGbVg.js';
|
|
3
3
|
import { SettingsRegular, CollectionsAdd20Regular } from '@fluentui/react-icons';
|
|
4
4
|
import '@babylonjs/core/Particles/webgl2ParticleSystem.js';
|
|
5
5
|
import '@babylonjs/core/Rendering/prePassRendererSceneComponent.js';
|
|
@@ -34,17 +34,17 @@ import { SSRRenderingPipeline } from '@babylonjs/core/PostProcesses/RenderPipeli
|
|
|
34
34
|
import { IblShadowsRenderPipeline } from '@babylonjs/core/Rendering/IBLShadows/iblShadowsRenderPipeline.js';
|
|
35
35
|
import { NodeRenderGraph } from '@babylonjs/core/FrameGraph/Node/nodeRenderGraph.js';
|
|
36
36
|
import { SpriteManager } from '@babylonjs/core/Sprites/spriteManager.js';
|
|
37
|
-
import '@babylonjs/core/Maths/math.color.js';
|
|
38
37
|
import '@babylonjs/core/Misc/observable.js';
|
|
39
|
-
import '@babylonjs/core/Misc/typeStore.js';
|
|
40
38
|
import '@babylonjs/core/Misc/dataStorage.js';
|
|
41
|
-
import '@babylonjs/core/Misc/logger.js';
|
|
42
|
-
import '@fluentui/react-motion-components-preview';
|
|
43
39
|
import '@babylonjs/core/Misc/asyncLock.js';
|
|
44
40
|
import '@babylonjs/core/Misc/deferred.js';
|
|
45
41
|
import '@fluentui-contrib/react-resize-handle';
|
|
46
|
-
import '@fluentui
|
|
42
|
+
import '@fluentui/react-motion-components-preview';
|
|
43
|
+
import '@babylonjs/core/Misc/logger.js';
|
|
44
|
+
import 'react-dom/client';
|
|
45
|
+
import '@babylonjs/core/Maths/math.color.js';
|
|
47
46
|
import '@babylonjs/core/Misc/uniqueIdGenerator.js';
|
|
47
|
+
import '@fluentui-contrib/react-virtualizer';
|
|
48
48
|
import '@babylonjs/addons/msdfText/fontAsset.js';
|
|
49
49
|
import '@babylonjs/addons/msdfText/textRenderer.js';
|
|
50
50
|
import '@babylonjs/core/Debug/physicsViewer.js';
|
|
@@ -63,7 +63,6 @@ import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension.j
|
|
|
63
63
|
import '@babylonjs/core/Misc/pressureObserverWrapper.js';
|
|
64
64
|
import '@babylonjs/core/Maths/math.scalar.js';
|
|
65
65
|
import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector.js';
|
|
66
|
-
import '@babylonjs/core/Maths/math.scalar.functions.js';
|
|
67
66
|
import '@babylonjs/core/Engines/abstractEngine.js';
|
|
68
67
|
import '@babylonjs/core/Bones/bone.js';
|
|
69
68
|
import '@babylonjs/core/Cameras/camera.js';
|
|
@@ -75,10 +74,14 @@ import '@babylonjs/core/Gizmos/spatialAudioGizmo.js';
|
|
|
75
74
|
import '@babylonjs/core/Lights/light.js';
|
|
76
75
|
import '@babylonjs/core/Meshes/abstractMesh.js';
|
|
77
76
|
import '@babylonjs/core/node.js';
|
|
78
|
-
import 'react-dom/client';
|
|
79
77
|
import '@babylonjs/core/Misc/screenshotTools.js';
|
|
80
78
|
import '@babylonjs/core/Layers/selectionOutlineLayer.js';
|
|
81
79
|
import '@babylonjs/core/Meshes/GaussianSplatting/gaussianSplattingMesh.js';
|
|
80
|
+
import '@babylonjs/core/SmartAssets/smartAssetManager.pure.js';
|
|
81
|
+
import '@babylonjs/core/Loading/Plugins/babylonFileLoader.js';
|
|
82
|
+
import '@babylonjs/core/Meshes/mesh.js';
|
|
83
|
+
import '@babylonjs/core/Misc/sceneSerializer.js';
|
|
84
|
+
import '@babylonjs/core/SmartAssets/smartAssetSerializer.js';
|
|
82
85
|
import '@babylonjs/core/Animations/animationGroup.js';
|
|
83
86
|
import '@babylonjs/core/Animations/animation.js';
|
|
84
87
|
import '@babylonjs/core/Animations/animationPropertiesOverride.js';
|
|
@@ -93,8 +96,8 @@ import '@babylonjs/core/AudioV2/abstractAudio/staticSound.js';
|
|
|
93
96
|
import '@babylonjs/core/AudioV2/abstractAudio/streamingSound.js';
|
|
94
97
|
import '@babylonjs/core/Cameras/targetCamera.js';
|
|
95
98
|
import '@babylonjs/core/scene.js';
|
|
96
|
-
import '@babylonjs/core/FrameGraph/frameGraph.js';
|
|
97
99
|
import '@babylonjs/core/FlowGraph/flowGraph.js';
|
|
100
|
+
import '@babylonjs/core/FrameGraph/frameGraph.js';
|
|
98
101
|
import '@babylonjs/core/Lights/hemisphericLight.js';
|
|
99
102
|
import '@babylonjs/core/Lights/rectAreaLight.js';
|
|
100
103
|
import '@babylonjs/core/Lights/shadowLight.js';
|
|
@@ -114,7 +117,6 @@ import '@babylonjs/core/Engines/engine.js';
|
|
|
114
117
|
import '@babylonjs/core/Materials/Node/Blocks/gradientBlock.js';
|
|
115
118
|
import '@babylonjs/core/Materials/Node/Enums/nodeMaterialBlockConnectionPointTypes.js';
|
|
116
119
|
import '@babylonjs/core/Misc/gradients.js';
|
|
117
|
-
import '@babylonjs/core/Meshes/mesh.js';
|
|
118
120
|
import '@babylonjs/core/Debug/skeletonViewer.js';
|
|
119
121
|
import '@babylonjs/core/Meshes/buffer.js';
|
|
120
122
|
import '@babylonjs/core/Meshes/Builders/linesBuilder.js';
|
|
@@ -146,6 +148,7 @@ import '@babylonjs/core/Materials/imageProcessingConfiguration.js';
|
|
|
146
148
|
import '@babylonjs/core/Maths/colorTemperature.functions.js';
|
|
147
149
|
import '@babylonjs/core/Bones/skeleton.js';
|
|
148
150
|
import '@babylonjs/core/Sprites/sprite.js';
|
|
151
|
+
import '@babylonjs/core/Maths/math.scalar.functions.js';
|
|
149
152
|
import '@babylonjs/core/Misc/textureTools.js';
|
|
150
153
|
import '@babylonjs/core/Events/keyboardEvents.js';
|
|
151
154
|
import '@babylonjs/core/Events/pointerEvents.js';
|
|
@@ -159,7 +162,6 @@ import '@babylonjs/core/Materials/Textures/renderTargetTexture.js';
|
|
|
159
162
|
import '@babylonjs/core/Materials/Textures/thinTexture.js';
|
|
160
163
|
import '@babylonjs/core/AudioV2/abstractAudio/mainAudioBus.js';
|
|
161
164
|
import '@babylonjs/core/FlowGraph/flowGraphCoordinator.js';
|
|
162
|
-
import '@babylonjs/core/SmartAssets/smartAssetManager.pure.js';
|
|
163
165
|
import '@babylonjs/core/Rendering/boundingBoxRenderer.js';
|
|
164
166
|
import '@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js';
|
|
165
167
|
import '@babylonjs/core/Sprites/spriteSceneComponent.js';
|
|
@@ -167,10 +169,7 @@ import '@babylonjs/core/Materials/Textures/dynamicTexture.js';
|
|
|
167
169
|
import '@babylonjs/core/Misc/equirectangularCapture.js';
|
|
168
170
|
import '@babylonjs/core/Misc/sceneRecorder.js';
|
|
169
171
|
import '@babylonjs/core/Misc/videoRecorder.js';
|
|
170
|
-
import '@babylonjs/core/Misc/sceneSerializer.js';
|
|
171
172
|
import '@babylonjs/core/Misc/environmentTextureTools.js';
|
|
172
|
-
import '@babylonjs/core/Loading/Plugins/babylonFileLoader.js';
|
|
173
|
-
import '@babylonjs/core/SmartAssets/smartAssetSerializer.js';
|
|
174
173
|
import '@babylonjs/loaders/glTF/2.0/glTFLoaderExtensionRegistry.js';
|
|
175
174
|
import '@babylonjs/loaders/glTF/glTFFileLoader.js';
|
|
176
175
|
import '@babylonjs/loaders/glTF/glTFValidation.js';
|
|
@@ -791,4 +790,4 @@ var quickCreateToolsService = {
|
|
|
791
790
|
};
|
|
792
791
|
|
|
793
792
|
export { CreateToolsServiceDefinition, quickCreateToolsService as default };
|
|
794
|
-
//# sourceMappingURL=quickCreateToolsService-
|
|
793
|
+
//# sourceMappingURL=quickCreateToolsService-B0RAjMcI.js.map
|