@babylonjs/inspector 9.0.0 → 9.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.
Files changed (293) hide show
  1. package/bin/inspector-bridge.mjs +4734 -0
  2. package/bin/inspector-cli.mjs +4931 -0
  3. package/lib/cli/protocol.d.ts +180 -0
  4. package/lib/components/curveEditor/bottomBar/rangeSelector.d.ts +6 -0
  5. package/lib/components/curveEditor/bottomBar.d.ts +6 -0
  6. package/lib/components/curveEditor/canvas/canvas.d.ts +6 -0
  7. package/lib/components/curveEditor/canvas/curve.d.ts +14 -0
  8. package/lib/components/curveEditor/canvas/curveData.d.ts +40 -0
  9. package/lib/components/curveEditor/canvas/frameBar.d.ts +12 -0
  10. package/lib/components/curveEditor/canvas/graph.d.ts +11 -0
  11. package/lib/components/curveEditor/canvas/keyPoint.d.ts +34 -0
  12. package/lib/components/curveEditor/canvas/playHead.d.ts +12 -0
  13. package/lib/components/curveEditor/canvas/rangeFrameBar.d.ts +10 -0
  14. package/lib/components/curveEditor/curveEditor.d.ts +29 -0
  15. package/lib/components/curveEditor/curveEditorButton.d.ts +31 -0
  16. package/lib/components/curveEditor/curveEditorColors.d.ts +56 -0
  17. package/lib/components/curveEditor/curveEditorContext.d.ts +267 -0
  18. package/lib/components/curveEditor/rangeSelector.d.ts +6 -0
  19. package/lib/components/curveEditor/sideBar/addAnimationPanel.d.ts +10 -0
  20. package/lib/components/curveEditor/sideBar/animationList.d.ts +6 -0
  21. package/lib/components/curveEditor/sideBar/editAnimationPanel.d.ts +12 -0
  22. package/lib/components/curveEditor/sideBar/loadAnimationPanel.d.ts +10 -0
  23. package/lib/components/curveEditor/sideBar/saveAnimationPanel.d.ts +10 -0
  24. package/lib/components/curveEditor/sideBar.d.ts +6 -0
  25. package/lib/components/curveEditor/topBar.d.ts +6 -0
  26. package/lib/components/debug/debugPane.d.ts +6 -0
  27. package/lib/components/errorBoundary.d.ts +31 -0
  28. package/lib/components/extensibleAccordion.d.ts +67 -0
  29. package/lib/components/gizmoToolbar.d.ts +7 -0
  30. package/lib/components/pane.d.ts +4 -0
  31. package/lib/components/performanceViewer/canvasGraph.d.ts +16 -0
  32. package/lib/components/performanceViewer/canvasGraphService.d.ts +238 -0
  33. package/lib/components/performanceViewer/graphSupportingTypes.d.ts +90 -0
  34. package/lib/components/performanceViewer/performanceSidebar.d.ts +10 -0
  35. package/lib/components/performanceViewer/performanceViewer.d.ts +15 -0
  36. package/lib/components/pickingToolbar.d.ts +11 -0
  37. package/lib/components/properties/animation/animationGroupProperties.d.ts +8 -0
  38. package/lib/components/properties/animation/animationsProperties.d.ts +21 -0
  39. package/lib/components/properties/animation/targetedAnimationProperties.d.ts +7 -0
  40. package/lib/components/properties/atmosphereProperties.d.ts +20 -0
  41. package/lib/components/properties/audio/soundProperties.d.ts +8 -0
  42. package/lib/components/properties/boundProperty.d.ts +80 -0
  43. package/lib/components/properties/cameras/arcRotateCameraProperties.d.ts +17 -0
  44. package/lib/components/properties/cameras/cameraProperties.d.ts +10 -0
  45. package/lib/components/properties/cameras/followCameraProperties.d.ts +8 -0
  46. package/lib/components/properties/cameras/freeCameraProperties.d.ts +11 -0
  47. package/lib/components/properties/cameras/geospatialCameraProperties.d.ts +11 -0
  48. package/lib/components/properties/cameras/targetCameraProperties.d.ts +8 -0
  49. package/lib/components/properties/commonGeneralProperties.d.ts +16 -0
  50. package/lib/components/properties/frameGraph/frameGraphProperties.d.ts +8 -0
  51. package/lib/components/properties/generateCopyString.d.ts +7 -0
  52. package/lib/components/properties/lights/areaLightProperties.d.ts +5 -0
  53. package/lib/components/properties/lights/clusteredLightContainerProperties.d.ts +10 -0
  54. package/lib/components/properties/lights/directionalLightProperties.d.ts +8 -0
  55. package/lib/components/properties/lights/hemisphericLightProperties.d.ts +5 -0
  56. package/lib/components/properties/lights/lightProperties.d.ts +7 -0
  57. package/lib/components/properties/lights/pointLightProperties.d.ts +5 -0
  58. package/lib/components/properties/lights/shadowGeneratorProperties.d.ts +6 -0
  59. package/lib/components/properties/lights/shadowLightProperties.d.ts +5 -0
  60. package/lib/components/properties/lights/spotLightProperties.d.ts +5 -0
  61. package/lib/components/properties/linkToEntityPropertyLine.d.ts +27 -0
  62. package/lib/components/properties/materials/materialProperties.d.ts +11 -0
  63. package/lib/components/properties/materials/multiMaterialProperties.d.ts +7 -0
  64. package/lib/components/properties/materials/nodeMaterialProperties.d.ts +8 -0
  65. package/lib/components/properties/materials/normalMapProperties.d.ts +19 -0
  66. package/lib/components/properties/materials/openpbrMaterialProperties.d.ts +64 -0
  67. package/lib/components/properties/materials/pbrBaseMaterialProperties.d.ts +285 -0
  68. package/lib/components/properties/materials/skyMaterialProperties.d.ts +5 -0
  69. package/lib/components/properties/materials/standardMaterialProperties.d.ts +29 -0
  70. package/lib/components/properties/metadataProperties.d.ts +12 -0
  71. package/lib/components/properties/nodes/abstractMeshProperties.d.ts +27 -0
  72. package/lib/components/properties/nodes/gaussianSplattingProperties.d.ts +5 -0
  73. package/lib/components/properties/nodes/meshProperties.d.ts +11 -0
  74. package/lib/components/properties/nodes/nodeProperties.d.ts +7 -0
  75. package/lib/components/properties/particles/attractor.d.ts +23 -0
  76. package/lib/components/properties/particles/attractorAdapter.d.ts +56 -0
  77. package/lib/components/properties/particles/attractorList.d.ts +15 -0
  78. package/lib/components/properties/particles/attractorProperties.d.ts +11 -0
  79. package/lib/components/properties/particles/colorProperties.d.ts +11 -0
  80. package/lib/components/properties/particles/commandsProperties.d.ts +13 -0
  81. package/lib/components/properties/particles/emissionProperties.d.ts +11 -0
  82. package/lib/components/properties/particles/emitterProperties.d.ts +13 -0
  83. package/lib/components/properties/particles/lifetimeProperties.d.ts +11 -0
  84. package/lib/components/properties/particles/nodeEditorProperties.d.ts +12 -0
  85. package/lib/components/properties/particles/rotationProperties.d.ts +11 -0
  86. package/lib/components/properties/particles/sizeProperties.d.ts +11 -0
  87. package/lib/components/properties/particles/spritesheetProperties.d.ts +11 -0
  88. package/lib/components/properties/particles/systemProperties.d.ts +13 -0
  89. package/lib/components/properties/physics/physicsProperties.d.ts +6 -0
  90. package/lib/components/properties/postProcesses/postProcessProperties.d.ts +10 -0
  91. package/lib/components/properties/propertiesPane.d.ts +2 -0
  92. package/lib/components/properties/renderingPipelines/defaultRenderingPipelineProperties.d.ts +23 -0
  93. package/lib/components/properties/renderingPipelines/iblShadowsRenderPipelineProperties.d.ts +11 -0
  94. package/lib/components/properties/renderingPipelines/lensRenderingPipelineProperties.d.ts +8 -0
  95. package/lib/components/properties/renderingPipelines/postProcessRenderPipelineProperties.d.ts +5 -0
  96. package/lib/components/properties/renderingPipelines/ssao2RenderingPipelineProperties.d.ts +8 -0
  97. package/lib/components/properties/renderingPipelines/ssaoRenderingPipelineProperties.d.ts +5 -0
  98. package/lib/components/properties/renderingPipelines/ssrRenderingPipelineProperties.d.ts +17 -0
  99. package/lib/components/properties/skeleton/boneProperties.d.ts +7 -0
  100. package/lib/components/properties/skeleton/skeletonProperties.d.ts +8 -0
  101. package/lib/components/properties/sprites/spriteManagerProperties.d.ts +25 -0
  102. package/lib/components/properties/sprites/spriteProperties.d.ts +19 -0
  103. package/lib/components/properties/textures/advancedDynamicTextureProperties.d.ts +11 -0
  104. package/lib/components/properties/textures/baseTextureProperties.d.ts +16 -0
  105. package/lib/components/properties/textures/cubeTextureProperties.d.ts +5 -0
  106. package/lib/components/properties/textures/multiRenderTargetProperties.d.ts +5 -0
  107. package/lib/components/properties/textures/renderTargetTextureProperties.d.ts +5 -0
  108. package/lib/components/properties/textures/textureFormatUtils.d.ts +48 -0
  109. package/lib/components/properties/textures/texturePreview.d.ts +17 -0
  110. package/lib/components/properties/textures/textureProperties.d.ts +11 -0
  111. package/lib/components/properties/textures/thinTextureProperties.d.ts +8 -0
  112. package/lib/components/properties/transformProperties.d.ts +11 -0
  113. package/lib/components/scene/sceneExplorer.d.ts +182 -0
  114. package/lib/components/scene/sceneExplorerDragDrop.d.ts +38 -0
  115. package/lib/components/scene/sceneProperties.d.ts +19 -0
  116. package/lib/components/stats/countStats.d.ts +5 -0
  117. package/lib/components/stats/frameStepStats.d.ts +8 -0
  118. package/lib/components/stats/performanceStats.d.ts +6 -0
  119. package/lib/components/stats/statsPane.d.ts +3 -0
  120. package/lib/components/stats/systemStats.d.ts +5 -0
  121. package/lib/components/teachingMoment.d.ts +20 -0
  122. package/lib/components/textureEditor/canvasManager.d.ts +113 -0
  123. package/lib/components/textureEditor/canvasShader.d.ts +10 -0
  124. package/lib/components/textureEditor/channels.d.ts +25 -0
  125. package/lib/components/textureEditor/properties.d.ts +23 -0
  126. package/lib/components/textureEditor/status.d.ts +13 -0
  127. package/lib/components/textureEditor/textureEditor.d.ts +113 -0
  128. package/lib/components/textureEditor/tools.d.ts +20 -0
  129. package/lib/components/theme.d.ts +10 -0
  130. package/lib/components/tools/capture/equirectangularCaptureTool.d.ts +5 -0
  131. package/lib/components/tools/capture/gifCaptureTool.d.ts +7 -0
  132. package/lib/components/tools/capture/sceneReplayTool.d.ts +5 -0
  133. package/lib/components/tools/capture/screenshotTool.d.ts +5 -0
  134. package/lib/components/tools/capture/videoCaptureTool.d.ts +5 -0
  135. package/lib/components/tools/exportTools.d.ts +11 -0
  136. package/lib/components/tools/import/gltfAnimationImportTool.d.ts +5 -0
  137. package/lib/components/tools/import/gltfLoaderOptionsTool.d.ts +8 -0
  138. package/lib/components/tools/import/gltfValidationTool.d.ts +5 -0
  139. package/lib/components/tools/reflectorTools.d.ts +5 -0
  140. package/lib/components/tools/toolsPane.d.ts +3 -0
  141. package/lib/components/uxContextProvider.d.ts +2 -0
  142. package/lib/contexts/extensionManagerContext.d.ts +6 -0
  143. package/lib/contexts/propertyContext.d.ts +30 -0
  144. package/lib/contexts/settingsContext.d.ts +3 -0
  145. package/lib/contexts/watcherContext.d.ts +3 -0
  146. package/lib/extensibility/builtInsExtensionFeed.d.ts +21 -0
  147. package/lib/extensibility/defaultInspectorExtensionFeed.d.ts +5 -0
  148. package/lib/extensibility/extensionFeed.d.ts +113 -0
  149. package/lib/extensibility/extensionManager.d.ts +111 -0
  150. package/lib/extensions/quickCreate/cameras.d.ts +14 -0
  151. package/lib/extensions/quickCreate/frameGraphs.d.ts +14 -0
  152. package/lib/extensions/quickCreate/lights.d.ts +14 -0
  153. package/lib/extensions/quickCreate/materials.d.ts +14 -0
  154. package/lib/extensions/quickCreate/meshes.d.ts +10 -0
  155. package/lib/extensions/quickCreate/particles.d.ts +15 -0
  156. package/lib/extensions/quickCreate/quickCreateLayout.d.ts +44 -0
  157. package/lib/extensions/quickCreate/quickCreateToolsService.d.ts +11 -0
  158. package/lib/extensions/quickCreate/renderingPipelines.d.ts +14 -0
  159. package/lib/extensions/quickCreate/settingsPopover.d.ts +14 -0
  160. package/lib/extensions/quickCreate/spriteManagers.d.ts +14 -0
  161. package/lib/{extensionsListService-zYdKn8uM.js → extensionsListService-eRZtqcfj.js} +8 -8
  162. package/lib/extensionsListService-eRZtqcfj.js.map +1 -0
  163. package/lib/hooks/compoundPropertyHooks.d.ts +24 -0
  164. package/lib/hooks/instrumentationHooks.d.ts +9 -0
  165. package/lib/hooks/observableHooks.d.ts +35 -0
  166. package/lib/hooks/pollingHooks.d.ts +7 -0
  167. package/lib/hooks/resourceHooks.d.ts +20 -0
  168. package/lib/hooks/settingsHooks.d.ts +13 -0
  169. package/lib/hooks/teachingMomentHooks.d.ts +34 -0
  170. package/lib/hooks/themeHooks.d.ts +17 -0
  171. package/lib/hooks/useObservableArray.d.ts +11 -0
  172. package/lib/hooks/useResizeHandle.d.ts +35 -0
  173. package/lib/{index-DuVF9zYN.js → index-FWuITINA.js} +1932 -1031
  174. package/lib/index-FWuITINA.js.map +1 -0
  175. package/lib/index.d.ts +111 -74767
  176. package/lib/index.js +6 -6
  177. package/lib/inspectable.d.ts +67 -0
  178. package/lib/inspector.d.ts +41 -0
  179. package/lib/instrumentation/functionInstrumentation.d.ts +20 -0
  180. package/lib/instrumentation/propertyInstrumentation.d.ts +33 -0
  181. package/lib/legacy/debugLayer.d.ts +24 -0
  182. package/lib/legacy/inspectableCustomPropertiesService.d.ts +3 -0
  183. package/lib/legacy/inspector.d.ts +39 -0
  184. package/lib/legacy/legacy.d.ts +9 -0
  185. package/lib/legacy/propertiesSectionMapping.d.ts +99 -0
  186. package/lib/misc/arrayUtils.d.ts +4 -0
  187. package/lib/misc/assert.d.ts +5 -0
  188. package/lib/misc/defaultPerfStrategies.d.ts +16 -0
  189. package/lib/misc/graphUtils.d.ts +44 -0
  190. package/lib/misc/nodeGeometryEditor.d.ts +3 -0
  191. package/lib/misc/nodeMaterialEditor.d.ts +2 -0
  192. package/lib/misc/nodeParticleEditor.d.ts +2 -0
  193. package/lib/misc/nodeRenderGraphEditor.d.ts +2 -0
  194. package/lib/misc/observableCollection.d.ts +23 -0
  195. package/lib/misc/snippetUtils.d.ts +74 -0
  196. package/lib/misc/textureTools.d.ts +34 -0
  197. package/lib/modularTool.d.ts +42 -0
  198. package/lib/modularity/serviceContainer.d.ts +64 -0
  199. package/lib/modularity/serviceDefinition.d.ts +64 -0
  200. package/lib/{quickCreateToolsService-BtsSLeMY.js → quickCreateToolsService-MzZbVrvr.js} +7 -7
  201. package/lib/quickCreateToolsService-MzZbVrvr.js.map +1 -0
  202. package/lib/{reflectorService-Bzs-Ykos.js → reflectorService-DdPEZLjO.js} +7 -7
  203. package/lib/reflectorService-DdPEZLjO.js.map +1 -0
  204. package/lib/services/cli/cliConnectionStatus.d.ts +19 -0
  205. package/lib/services/cli/entityQueryService.d.ts +8 -0
  206. package/lib/services/cli/inspectableBridgeService.d.ts +22 -0
  207. package/lib/services/cli/inspectableCommandRegistry.d.ts +58 -0
  208. package/lib/services/cli/perfTraceCommandService.d.ts +9 -0
  209. package/lib/services/cli/screenshotCommandService.d.ts +8 -0
  210. package/lib/services/cli/shaderCommandService.d.ts +7 -0
  211. package/lib/services/cli/statsCommandService.d.ts +9 -0
  212. package/lib/services/cliConnectionStatusService.d.ts +4 -0
  213. package/lib/services/defaultToolbarMetadata.d.ts +6 -0
  214. package/lib/services/extensionsListService.d.ts +3 -0
  215. package/lib/services/gizmoService.d.ts +84 -0
  216. package/lib/services/gizmoToolbarService.d.ts +5 -0
  217. package/lib/services/globalSettings.d.ts +5 -0
  218. package/lib/services/highlightService.d.ts +8 -0
  219. package/lib/services/miniStatsService.d.ts +4 -0
  220. package/lib/services/panes/debugService.d.ts +25 -0
  221. package/lib/services/panes/properties/animationGroupPropertiesService.d.ts +4 -0
  222. package/lib/services/panes/properties/animationPropertiesService.d.ts +5 -0
  223. package/lib/services/panes/properties/atmospherePropertiesService.d.ts +5 -0
  224. package/lib/services/panes/properties/audioPropertiesService.d.ts +3 -0
  225. package/lib/services/panes/properties/cameraPropertiesService.d.ts +7 -0
  226. package/lib/services/panes/properties/commonPropertiesService.d.ts +3 -0
  227. package/lib/services/panes/properties/effectLayerPropertiesService.d.ts +3 -0
  228. package/lib/services/panes/properties/frameGraphPropertiesService.d.ts +3 -0
  229. package/lib/services/panes/properties/lightPropertiesServices.d.ts +4 -0
  230. package/lib/services/panes/properties/materialPropertiesService.d.ts +4 -0
  231. package/lib/services/panes/properties/metadataPropertiesService.d.ts +3 -0
  232. package/lib/services/panes/properties/nodePropertiesService.d.ts +4 -0
  233. package/lib/services/panes/properties/particleSystemPropertiesService.d.ts +4 -0
  234. package/lib/services/panes/properties/physicsPropertiesService.d.ts +3 -0
  235. package/lib/services/panes/properties/postProcessPropertiesService.d.ts +3 -0
  236. package/lib/services/panes/properties/propertiesService.d.ts +53 -0
  237. package/lib/services/panes/properties/renderingPipelinePropertiesService.d.ts +3 -0
  238. package/lib/services/panes/properties/scenePropertiesService.d.ts +4 -0
  239. package/lib/services/panes/properties/skeletonPropertiesService.d.ts +4 -0
  240. package/lib/services/panes/properties/spritePropertiesService.d.ts +4 -0
  241. package/lib/services/panes/properties/texturePropertiesService.d.ts +4 -0
  242. package/lib/services/panes/properties/transformPropertiesService.d.ts +3 -0
  243. package/lib/services/panes/scene/animationGroupExplorerService.d.ts +5 -0
  244. package/lib/services/panes/scene/atmosphereExplorerService.d.ts +5 -0
  245. package/lib/services/panes/scene/defaultSectionsMetadata.d.ts +33 -0
  246. package/lib/services/panes/scene/disposableCommandService.d.ts +4 -0
  247. package/lib/services/panes/scene/effectLayersExplorerService.d.ts +5 -0
  248. package/lib/services/panes/scene/frameGraphExplorerService.d.ts +5 -0
  249. package/lib/services/panes/scene/guiExplorerService.d.ts +5 -0
  250. package/lib/services/panes/scene/materialExplorerService.d.ts +5 -0
  251. package/lib/services/panes/scene/nodeExplorerService.d.ts +7 -0
  252. package/lib/services/panes/scene/particleSystemExplorerService.d.ts +5 -0
  253. package/lib/services/panes/scene/postProcessExplorerService.d.ts +5 -0
  254. package/lib/services/panes/scene/renderingPipelinesExplorerService.d.ts +5 -0
  255. package/lib/services/panes/scene/sceneExplorerService.d.ts +34 -0
  256. package/lib/services/panes/scene/skeletonExplorerService.d.ts +5 -0
  257. package/lib/services/panes/scene/soundExplorerService.d.ts +5 -0
  258. package/lib/services/panes/scene/spriteManagerExplorerService.d.ts +6 -0
  259. package/lib/services/panes/scene/texturesExplorerService.d.ts +5 -0
  260. package/lib/services/panes/settingsService.d.ts +25 -0
  261. package/lib/services/panes/statsService.d.ts +28 -0
  262. package/lib/services/panes/tools/captureService.d.ts +3 -0
  263. package/lib/services/panes/tools/exportService.d.ts +3 -0
  264. package/lib/services/panes/tools/import/gltfAnimationImportService.d.ts +3 -0
  265. package/lib/services/panes/tools/import/gltfLoaderOptionsDefaults.d.ts +46 -0
  266. package/lib/services/panes/tools/import/gltfLoaderOptionsService.d.ts +4 -0
  267. package/lib/services/panes/tools/import/gltfValidationService.d.ts +3 -0
  268. package/lib/services/panes/tools/reflectorService.d.ts +7 -0
  269. package/lib/services/panes/toolsService.d.ts +29 -0
  270. package/lib/services/pickingService.d.ts +7 -0
  271. package/lib/services/reactContextService.d.ts +18 -0
  272. package/lib/services/sceneContext.d.ts +19 -0
  273. package/lib/services/selectionService.d.ts +24 -0
  274. package/lib/services/settingsStore.d.ts +55 -0
  275. package/lib/services/shellService.d.ts +256 -0
  276. package/lib/services/shellSettingsService.d.ts +3 -0
  277. package/lib/services/textureEditor/textureEditorService.d.ts +21 -0
  278. package/lib/services/textureEditor/tools/contrast.d.ts +2 -0
  279. package/lib/services/textureEditor/tools/eyedropper.d.ts +5 -0
  280. package/lib/services/textureEditor/tools/floodfill.d.ts +5 -0
  281. package/lib/services/textureEditor/tools/paintbrush.d.ts +2 -0
  282. package/lib/services/textureEditor/tools/rectangularSelect.d.ts +5 -0
  283. package/lib/services/themeSelectorService.d.ts +3 -0
  284. package/lib/services/themeService.d.ts +60 -0
  285. package/lib/services/userFeedbackService.d.ts +3 -0
  286. package/lib/services/watcherService.d.ts +38 -0
  287. package/lib/themes/babylonTheme.d.ts +3 -0
  288. package/package.json +12 -5
  289. package/readme.md +27 -0
  290. package/lib/extensionsListService-zYdKn8uM.js.map +0 -1
  291. package/lib/index-DuVF9zYN.js.map +0 -1
  292. package/lib/quickCreateToolsService-BtsSLeMY.js.map +0 -1
  293. package/lib/reflectorService-Bzs-Ykos.js.map +0 -1
@@ -0,0 +1,58 @@
1
+ import { type IDisposable } from "@babylonjs/core/index.js";
2
+ import { type IService } from "../../modularity/serviceDefinition";
3
+ /**
4
+ * Describes an argument for an inspectable command.
5
+ */
6
+ export type InspectableCommandArg = {
7
+ /**
8
+ * The name of the argument.
9
+ */
10
+ name: string;
11
+ /**
12
+ * A description of the argument.
13
+ */
14
+ description: string;
15
+ /**
16
+ * Whether the argument is required.
17
+ */
18
+ required?: boolean;
19
+ };
20
+ /**
21
+ * Describes a command that can be invoked from the CLI.
22
+ */
23
+ export type InspectableCommandDescriptor = {
24
+ /**
25
+ * A unique identifier for the command.
26
+ */
27
+ id: string;
28
+ /**
29
+ * A human-readable description of what the command does.
30
+ */
31
+ description: string;
32
+ /**
33
+ * The arguments that this command accepts.
34
+ */
35
+ args?: InspectableCommandArg[];
36
+ /**
37
+ * Executes the command with the given arguments and returns a result string.
38
+ * @param args A map of argument names to their values.
39
+ * @returns A promise that resolves to the result string.
40
+ */
41
+ executeAsync: (args: Record<string, string>) => Promise<string>;
42
+ };
43
+ /**
44
+ * The service identity for the inspectable command registry.
45
+ */
46
+ export declare const InspectableCommandRegistryIdentity: unique symbol;
47
+ /**
48
+ * A registry for commands that can be invoked from the Inspector CLI.
49
+ * @experimental
50
+ */
51
+ export interface IInspectableCommandRegistry extends IService<typeof InspectableCommandRegistryIdentity> {
52
+ /**
53
+ * Registers a command that can be invoked from the Inspector CLI.
54
+ * @param descriptor The command descriptor.
55
+ * @returns A disposable token that unregisters the command when disposed.
56
+ */
57
+ addCommand(descriptor: InspectableCommandDescriptor): IDisposable;
58
+ }
@@ -0,0 +1,9 @@
1
+ import { type ServiceDefinition } from "../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../sceneContext";
3
+ import { type IInspectableCommandRegistry } from "./inspectableCommandRegistry";
4
+ import "@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension.js";
5
+ /**
6
+ * Service that registers CLI commands for performance tracing using the PerformanceViewerCollector.
7
+ * start-perf-trace begins collecting data, stop-perf-trace stops and returns the collected data as JSON.
8
+ */
9
+ export declare const PerfTraceCommandServiceDefinition: ServiceDefinition<[], [IInspectableCommandRegistry, ISceneContext]>;
@@ -0,0 +1,8 @@
1
+ import { type ServiceDefinition } from "../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../sceneContext";
3
+ import { type IInspectableCommandRegistry } from "./inspectableCommandRegistry";
4
+ /**
5
+ * Service that registers a CLI command for capturing a screenshot of the scene.
6
+ * Returns the image as a base64 data string, suitable for consumption by AI agents.
7
+ */
8
+ export declare const ScreenshotCommandServiceDefinition: ServiceDefinition<[], [IInspectableCommandRegistry, ISceneContext]>;
@@ -0,0 +1,7 @@
1
+ import { type ServiceDefinition } from "../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../sceneContext";
3
+ import { type IInspectableCommandRegistry } from "./inspectableCommandRegistry";
4
+ /**
5
+ * Service that registers a CLI command for retrieving compiled shader code from a material.
6
+ */
7
+ export declare const ShaderCommandServiceDefinition: ServiceDefinition<[], [IInspectableCommandRegistry, ISceneContext]>;
@@ -0,0 +1,9 @@
1
+ import { type ServiceDefinition } from "../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../sceneContext";
3
+ import { type IInspectableCommandRegistry } from "./inspectableCommandRegistry";
4
+ import "@babylonjs/core/Engines/AbstractEngine/abstractEngine.timeQuery.js";
5
+ import "@babylonjs/core/Engines/Extensions/engine.query.js";
6
+ /**
7
+ * Service that registers CLI commands for querying scene and engine statistics.
8
+ */
9
+ export declare const StatsCommandServiceDefinition: ServiceDefinition<[], [IInspectableCommandRegistry, ISceneContext]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../modularity/serviceDefinition";
2
+ import { type ICliConnectionStatus } from "./cli/cliConnectionStatus";
3
+ import { type IShellService } from "./shellService";
4
+ export declare const CliConnectionStatusServiceDefinition: ServiceDefinition<[], [IShellService, ICliConnectionStatus]>;
@@ -0,0 +1,6 @@
1
+ export declare const enum DefaultToolbarItemOrder {
2
+ FrameRate = 300,
3
+ RefreshProperties = 200,
4
+ Feedback = 100,
5
+ CliStatus = 0
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../modularity/serviceDefinition";
2
+ import { type IShellService } from "./shellService";
3
+ export declare const ExtensionListServiceDefinition: ServiceDefinition<[], [IShellService]>;
@@ -0,0 +1,84 @@
1
+ import { type Camera, type IDisposable, type IReadonlyObservable, type Light, type Scene } from "@babylonjs/core/index.js";
2
+ import { type IService, type ServiceDefinition } from "../modularity/serviceDefinition";
3
+ import { type ISceneContext } from "./sceneContext";
4
+ import { type ISelectionService } from "./selectionService";
5
+ import { type IWatcherService } from "./watcherService";
6
+ import { CameraGizmo } from "@babylonjs/core/Gizmos/cameraGizmo.js";
7
+ import { GizmoCoordinatesMode } from "@babylonjs/core/Gizmos/gizmo.js";
8
+ import { LightGizmo } from "@babylonjs/core/Gizmos/lightGizmo.js";
9
+ import { UtilityLayerRenderer } from "@babylonjs/core/Rendering/utilityLayerRenderer.js";
10
+ type Reference<T> = {
11
+ value: T;
12
+ } & IDisposable;
13
+ /**
14
+ * Represents the available gizmo manipulation modes.
15
+ */
16
+ export type GizmoMode = "translate" | "rotate" | "scale" | "boundingBox";
17
+ /**
18
+ * The unique identity symbol for the gizmo service.
19
+ */
20
+ export declare const GizmoServiceIdentity: unique symbol;
21
+ /**
22
+ * Manages gizmos for manipulating objects in the scene, including shared utility layers
23
+ * and camera/light gizmo lifecycle.
24
+ */
25
+ export interface IGizmoService extends IService<typeof GizmoServiceIdentity> {
26
+ /**
27
+ * Gets a ref-counted utility layer for the specified scene. The layer is shared across consumers
28
+ * and disposed when the last reference is released.
29
+ * @param scene The scene to get the utility layer for.
30
+ * @param layer An optional layer name to differentiate between multiple utility layers.
31
+ * @returns A ref-counted reference to the utility layer. Dispose to release.
32
+ */
33
+ getUtilityLayer(scene: Scene, layer?: string): Reference<UtilityLayerRenderer>;
34
+ /**
35
+ * Gets a ref-counted camera gizmo for the specified camera.
36
+ * @param camera The camera to get the gizmo for.
37
+ * @returns A ref-counted reference to the camera gizmo. Dispose to release.
38
+ */
39
+ getCameraGizmo(camera: Camera): Reference<CameraGizmo>;
40
+ /**
41
+ * Gets a ref-counted light gizmo for the specified light.
42
+ * @param light The light to get the gizmo for.
43
+ * @returns A ref-counted reference to the light gizmo. Dispose to release.
44
+ */
45
+ getLightGizmo(light: Light): Reference<LightGizmo>;
46
+ /**
47
+ * Gets all camera gizmos currently active for the specified scene.
48
+ * @param scene The scene to get camera gizmos for.
49
+ * @returns A readonly array of camera gizmos.
50
+ */
51
+ getCameraGizmos(scene: Scene): readonly CameraGizmo[];
52
+ /**
53
+ * Gets all light gizmos currently active for the specified scene.
54
+ * @param scene The scene to get light gizmos for.
55
+ * @returns A readonly array of light gizmos.
56
+ */
57
+ getLightGizmos(scene: Scene): readonly LightGizmo[];
58
+ /**
59
+ * Gets or sets the current gizmo mode (translate, rotate, scale, or boundingBox), or undefined if no gizmo mode is active.
60
+ */
61
+ gizmoMode: GizmoMode | undefined;
62
+ /**
63
+ * An observable that notifies when the gizmo mode changes.
64
+ */
65
+ readonly onGizmoModeChanged: IReadonlyObservable<void>;
66
+ /**
67
+ * Gets or sets the coordinates mode for gizmos (local or world).
68
+ */
69
+ coordinatesMode: GizmoCoordinatesMode;
70
+ /**
71
+ * An observable that notifies when the coordinates mode changes.
72
+ */
73
+ readonly onCoordinatesModeChanged: IReadonlyObservable<void>;
74
+ /**
75
+ * Gets or sets the camera used by gizmos, or null to use the default scene camera.
76
+ */
77
+ gizmoCamera: Camera | null;
78
+ /**
79
+ * An observable that notifies when the gizmo camera changes.
80
+ */
81
+ readonly onCameraGizmoChanged: IReadonlyObservable<void>;
82
+ }
83
+ export declare const GizmoServiceDefinition: ServiceDefinition<[IGizmoService], [ISceneContext, ISelectionService, IWatcherService]>;
84
+ export {};
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../modularity/serviceDefinition";
2
+ import { type IShellService } from "./shellService";
3
+ import { type IGizmoService } from "./gizmoService";
4
+ import { type ISceneContext } from "./sceneContext";
5
+ export declare const GizmoToolbarServiceDefinition: ServiceDefinition<[], [IShellService, IGizmoService, ISceneContext]>;
@@ -0,0 +1,5 @@
1
+ import { type SettingDescriptor } from "./settingsStore";
2
+ export declare const CompactModeSettingDescriptor: SettingDescriptor<boolean>;
3
+ export declare const UseDegreesSettingDescriptor: SettingDescriptor<boolean>;
4
+ export declare const UseEulerSettingDescriptor: SettingDescriptor<boolean>;
5
+ export declare const DisableCopySettingDescriptor: SettingDescriptor<boolean>;
@@ -0,0 +1,8 @@
1
+ import { type ServiceDefinition } from "../modularity/serviceDefinition";
2
+ import { type IGizmoService } from "./gizmoService";
3
+ import { type ISceneContext } from "./sceneContext";
4
+ import { type ISelectionService } from "./selectionService";
5
+ import { type ISettingsStore, type SettingDescriptor } from "./settingsStore";
6
+ import { type IThemeService } from "./themeService";
7
+ export declare const HighlightSelectedEntitySettingDescriptor: SettingDescriptor<boolean>;
8
+ export declare const HighlightServiceDefinition: ServiceDefinition<[], [ISelectionService, ISceneContext, ISettingsStore, IThemeService, IGizmoService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "./sceneContext";
3
+ import { type IShellService } from "./shellService";
4
+ export declare const MiniStatsServiceDefinition: ServiceDefinition<[], [ISceneContext, IShellService]>;
@@ -0,0 +1,25 @@
1
+ import { type IDisposable, type Scene } from "@babylonjs/core/index.js";
2
+ import { type DynamicAccordionSection, type DynamicAccordionSectionContent } from "../../components/extensibleAccordion";
3
+ import { type IService, type ServiceDefinition } from "../../modularity/serviceDefinition";
4
+ import { type ISceneContext } from "../sceneContext";
5
+ import { type IShellService } from "../shellService";
6
+ /**
7
+ * The unique identity symbol for the debug service.
8
+ */
9
+ export declare const DebugServiceIdentity: unique symbol;
10
+ /**
11
+ * Allows new sections or content to be added to the debug pane.
12
+ */
13
+ export interface IDebugService extends IService<typeof DebugServiceIdentity> {
14
+ /**
15
+ * Adds a new section.
16
+ * @param section A description of the section to add.
17
+ */
18
+ addSection(section: DynamicAccordionSection): IDisposable;
19
+ /**
20
+ * Adds content to one or more sections.
21
+ * @param content A description of the content to add.
22
+ */
23
+ addSectionContent(content: DynamicAccordionSectionContent<Scene>): IDisposable;
24
+ }
25
+ export declare const DebugServiceDefinition: ServiceDefinition<[IDebugService], [IShellService, ISceneContext]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ import { type ISelectionService } from "../../selectionService";
4
+ export declare const AnimationGroupPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISelectionService } from "../../selectionService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ import { type ISceneContext } from "../../../services/sceneContext";
5
+ export declare const AnimationPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService, ISceneContext]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISelectionService } from "../../selectionService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ import { type ISceneContext } from "../../../services/sceneContext";
5
+ export declare const AtmospherePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService, ISceneContext]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const AudioPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,7 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const ControlPropertiesSectionIdentity: unique symbol;
4
+ export declare const CollisionPropertiesSectionIdentity: unique symbol;
5
+ export declare const LimitsPropertiesSectionIdentity: unique symbol;
6
+ export declare const BehaviorsPropertiesSectionIdentity: unique symbol;
7
+ export declare const CameraPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const CommonPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const EffectLayerPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const FrameGraphPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISelectionService } from "../../selectionService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ export declare const LightPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISelectionService } from "../../selectionService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ export declare const MaterialPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const MetadataPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISelectionService } from "../../selectionService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ export declare const NodePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ import { type ISelectionService } from "../../selectionService";
4
+ export declare const ParticleSystemPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const PhysicsPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const PostProcessPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,53 @@
1
+ import { type IDisposable, type IReadonlyObservable } from "@babylonjs/core/index.js";
2
+ import { type DynamicAccordionSection, type DynamicAccordionSectionContent } from "../../../components/extensibleAccordion";
3
+ import { type PropertyChangeInfo } from "../../../contexts/propertyContext";
4
+ import { type IService, type ServiceDefinition } from "../../../modularity/serviceDefinition";
5
+ import { type ISelectionService } from "../../selectionService";
6
+ import { type IShellService } from "../../shellService";
7
+ /**
8
+ * The unique identity symbol for the properties service.
9
+ */
10
+ export declare const PropertiesServiceIdentity: unique symbol;
11
+ type PropertiesSectionContent<EntityT> = {
12
+ /**
13
+ * A unique key for the the content.
14
+ */
15
+ key: string;
16
+ /**
17
+ * A predicate function to determine if the content applies to the given entity.
18
+ */
19
+ predicate: (entity: unknown) => entity is EntityT;
20
+ } & {
21
+ content: readonly Omit<DynamicAccordionSectionContent<EntityT>, "key">[];
22
+ };
23
+ /**
24
+ * Allows new sections or content to be added to the properties pane.
25
+ */
26
+ export interface IPropertiesService extends IService<typeof PropertiesServiceIdentity> {
27
+ /**
28
+ * Adds a new section (e.g. "General", "Transforms", etc.).
29
+ * @param section A description of the section to add.
30
+ */
31
+ addSection(section: DynamicAccordionSection): IDisposable;
32
+ /**
33
+ * Adds content to one or more sections.
34
+ * @param content A description of the content to add.
35
+ */
36
+ addSectionContent<EntityT>(content: PropertiesSectionContent<EntityT>): IDisposable;
37
+ /**
38
+ * Highlights the specified sections temporarily to draw the user's attention to them.
39
+ * @remarks All other sections are collapsed (but can be expanded by the user) until a different entity is selected.
40
+ * @param sectionIds The identities of the sections to highlight.
41
+ */
42
+ highlightSections(sectionIds: readonly string[]): void;
43
+ /**
44
+ * An observable that notifies when a property has been changed by the user.
45
+ * @remarks This observable only fires for changes made through the properties pane.
46
+ */
47
+ readonly onPropertyChanged: IReadonlyObservable<PropertyChangeInfo>;
48
+ }
49
+ /**
50
+ * Provides a properties pane that enables displaying and editing properties of an entity such as a mesh or a texture.
51
+ */
52
+ export declare const PropertiesServiceDefinition: ServiceDefinition<[IPropertiesService], [IShellService, ISelectionService]>;
53
+ export {};
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const RenderingPipelinePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ import { type ISelectionService } from "../../selectionService";
4
+ export declare const ScenePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISelectionService } from "../../selectionService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ export declare const SkeletonPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISelectionService } from "../../selectionService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ export declare const SpritePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ISelectionService]>;
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ITextureEditorService } from "../../textureEditor/textureEditorService";
3
+ import { type IPropertiesService } from "./propertiesService";
4
+ export declare const TexturePropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService, ITextureEditorService]>;
@@ -0,0 +1,3 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IPropertiesService } from "./propertiesService";
3
+ export declare const TransformPropertiesServiceDefinition: ServiceDefinition<[], [IPropertiesService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const AnimationGroupExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const AtmosphereExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,33 @@
1
+ export declare const enum DefaultSectionsOrder {
2
+ Nodes = 100,
3
+ Skeletons = 200,
4
+ Materials = 300,
5
+ Textures = 400,
6
+ PostProcesses = 500,
7
+ RenderingPipelines = 600,
8
+ EffectLayers = 700,
9
+ ParticleSystems = 800,
10
+ SpriteManagers = 900,
11
+ AnimationGroups = 1000,
12
+ GUIs = 1100,
13
+ FrameGraphs = 1200,
14
+ Atmosphere = 1300,
15
+ Sounds = 1400
16
+ }
17
+ export declare const enum DefaultCommandsOrder {
18
+ SpritePlay = 600,
19
+ LightActive = 700,
20
+ CameraActive = 700,
21
+ GizmoActive = 800,
22
+ AnimationGroupPlay = 900,
23
+ FrameGraphPlay = 900,
24
+ MeshBoundingBox = 1000,
25
+ GuiHighlight = 1000,
26
+ MeshVisibility = 1100,
27
+ GuiVisibility = 1100,
28
+ EditNodeMaterial = 1100,
29
+ EditParticleSystem = 1100,
30
+ EditNodeGeometry = 1100,
31
+ EditNodeRenderGraph = 1100,
32
+ Dispose = 10000
33
+ }
@@ -0,0 +1,4 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type ISceneExplorerService } from "./sceneExplorerService";
4
+ export declare const DisposableCommandServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const EffectLayerExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const FrameGraphExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const GuiExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const MaterialExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,7 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type IGizmoService } from "../../gizmoService";
3
+ import { type ISceneContext } from "../../sceneContext";
4
+ import { type IWatcherService } from "../../watcherService";
5
+ import { type ISceneExplorerService } from "./sceneExplorerService";
6
+ import "@babylonjs/core/Rendering/boundingBoxRenderer.js";
7
+ export declare const NodeExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IGizmoService, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const ParticleSystemExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const PostProcessExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type ISceneExplorerService } from "./sceneExplorerService";
4
+ import "@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js";
5
+ export declare const RenderingPipelineExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext]>;
@@ -0,0 +1,34 @@
1
+ import { type IDisposable } from "@babylonjs/core/index.js";
2
+ import { type SceneExplorerCommandProvider, type SceneExplorerSection } from "../../../components/scene/sceneExplorer";
3
+ import { type IService, type ServiceDefinition } from "../../../modularity/serviceDefinition";
4
+ import { type ISceneContext } from "../../sceneContext";
5
+ import { type ISelectionService } from "../../selectionService";
6
+ import { type IShellService } from "../../shellService";
7
+ /**
8
+ * The unique identity symbol for the scene explorer service.
9
+ */
10
+ export declare const SceneExplorerServiceIdentity: unique symbol;
11
+ /**
12
+ * Allows new sections or commands to be added to the scene explorer pane.
13
+ */
14
+ export interface ISceneExplorerService extends IService<typeof SceneExplorerServiceIdentity> {
15
+ /**
16
+ * Adds a new section (e.g. "Nodes", "Materials", etc.) (this includes all descendants within the scene graph).
17
+ * @param section A description of the section to add.
18
+ */
19
+ addSection<T extends object>(section: SceneExplorerSection<T>): IDisposable;
20
+ /**
21
+ * Adds a new command (e.g. "Delete", "Rename", etc.) that can be executed on entities in the scene explorer.
22
+ * @param command A description of the command to add.
23
+ */
24
+ addEntityCommand<T extends object>(command: SceneExplorerCommandProvider<T>): IDisposable;
25
+ /**
26
+ * Adds a new command that can be executed on sections in the scene explorer.
27
+ * @param command A description of the command to add.
28
+ */
29
+ addSectionCommand<T extends string>(command: SceneExplorerCommandProvider<T, "contextMenu">): IDisposable;
30
+ }
31
+ /**
32
+ * Provides a scene explorer pane that enables browsing the scene graph and executing commands on entities.
33
+ */
34
+ export declare const SceneExplorerServiceDefinition: ServiceDefinition<[ISceneExplorerService], [ISceneContext, IShellService, ISelectionService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ export declare const SkeletonExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,5 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type ISceneExplorerService } from "./sceneExplorerService";
4
+ import { type IWatcherService } from "../../watcherService";
5
+ export declare const SoundExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;
@@ -0,0 +1,6 @@
1
+ import { type ServiceDefinition } from "../../../modularity/serviceDefinition";
2
+ import { type ISceneContext } from "../../sceneContext";
3
+ import { type IWatcherService } from "../../watcherService";
4
+ import { type ISceneExplorerService } from "./sceneExplorerService";
5
+ import "@babylonjs/core/Sprites/spriteSceneComponent.js";
6
+ export declare const SpriteManagerExplorerServiceDefinition: ServiceDefinition<[], [ISceneExplorerService, ISceneContext, IWatcherService]>;