@babylonjs/inspector 8.47.0-preview → 8.47.1-preview

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/lib/index.d.ts CHANGED
@@ -190,6 +190,10 @@ type ExpandableProperty = {
190
190
  * If true, the expanded content will be shown by default.
191
191
  */
192
192
  expandByDefault?: boolean;
193
+ /**
194
+ * If true, the expanded content will be indented to the right.
195
+ */
196
+ indentExpandedContent?: boolean;
193
197
  };
194
198
  type NonExpandableProperty = {
195
199
  expandedContent?: undefined;
@@ -1235,7 +1239,11 @@ type InspectorOptions = Omit<ModularToolOptions, "toolbarMode"> & {
1235
1239
  autoResizeEngine?: boolean;
1236
1240
  layoutMode?: LayoutMode;
1237
1241
  };
1238
- declare function ShowInspector(scene: Scene$2, options?: Partial<InspectorOptions>): IDisposable$2;
1242
+ type InspectorToken = IDisposable$1 & {
1243
+ readonly isDisposed: boolean;
1244
+ readonly onDisposed: IReadonlyObservable$2<void>;
1245
+ };
1246
+ declare function ShowInspector(scene: Scene$1, options?: Partial<InspectorOptions>): InspectorToken;
1239
1247
 
1240
1248
  type PropertyChangedEvent = {
1241
1249
  object: any;
@@ -11192,8 +11200,9 @@ interface EngineOptions extends AbstractEngineOptions, WebGLContextAttributes {
11192
11200
  */
11193
11201
  failIfMajorPerformanceCaveat?: boolean;
11194
11202
  /**
11195
- * If sRGB Buffer support is not set during construction, use this value to force a specific state
11196
- * This is added due to an issue when processing textures in chrome/edge/firefox
11203
+ * If sRGB buffer support is not set during construction, use this value to force a specific state
11204
+ * This was originally added to mitigate an issue when processing textures in chrome/edge/firefox.
11205
+ * The browser issue has since been fixed. This option remains for backward compatibility.
11197
11206
  * This will not influence NativeEngine and WebGPUEngine which set the behavior to true during construction.
11198
11207
  */
11199
11208
  forceSRGBBufferSupportState?: boolean;
@@ -14835,7 +14844,7 @@ declare class EffectWrapper {
14835
14844
  * @param creationOptions options to create the effect
14836
14845
  */
14837
14846
  constructor(creationOptions: EffectWrapperCreationOptions);
14838
- protected _gatherImports(useWebGPU: boolean | undefined, list: Promise<any>[]): void;
14847
+ protected _gatherImports(_useWebGPU: boolean | undefined, _list: Promise<any>[]): void;
14839
14848
  private _importPromises;
14840
14849
  /** @internal */
14841
14850
  _postConstructor(blockCompilation: boolean, defines?: Nullable<string>, extraInitializations?: (useWebGPU: boolean, list: Promise<any>[]) => void, importPromises?: Array<Promise<any>>): void;
@@ -17805,6 +17814,8 @@ interface SpriteManagerOptions {
17805
17814
  declare class SpriteManager implements ISpriteManager {
17806
17815
  /** defines the manager's name */
17807
17816
  name: string;
17817
+ /** @internal */
17818
+ _parentContainer: Nullable<IAssetContainer>;
17808
17819
  /** Define the Url to load snippets */
17809
17820
  static SnippetUrl: string;
17810
17821
  /** Snippet ID if the manager was created from the snippet server */
@@ -31877,6 +31888,10 @@ interface IAssetContainer {
31877
31888
  * The list of procedural textures added to the scene
31878
31889
  */
31879
31890
  proceduralTextures: ProceduralTexture[];
31891
+ /**
31892
+ * The list of sprite managers added to the scene
31893
+ */
31894
+ spriteManagers?: ISpriteManager[];
31880
31895
  /**
31881
31896
  * @returns all meshes, lights, cameras, transformNodes and bones
31882
31897
  */
@@ -37743,6 +37758,7 @@ declare class SolidParticleSystem implements IDisposable {
37743
37758
  * * bSphereRadiusFactor (optional float, default 1.0) : a number to multiply the bounding sphere radius by in order to reduce it for instance.
37744
37759
  * * computeBoundingBox (optional boolean, default false): if the bounding box of the entire SPS will be computed (for occlusion detection, for example). If it is false, the bounding box will be the bounding box of the first particle.
37745
37760
  * * autoFixFaceOrientation (optional boolean, default false): if the particle face orientations will be flipped for transformations that change orientation (scale (-1, 1, 1), for example)
37761
+ * * camera (optional Camera) : the camera to use with the particule system. If not provided, use the scene active camera.
37746
37762
  * @param options.updatable
37747
37763
  * @param options.isPickable
37748
37764
  * @param options.enableDepthSort
@@ -37754,6 +37770,7 @@ declare class SolidParticleSystem implements IDisposable {
37754
37770
  * @param options.enableMultiMaterial
37755
37771
  * @param options.computeBoundingBox
37756
37772
  * @param options.autoFixFaceOrientation
37773
+ * @param options.camera
37757
37774
  * @example bSphereRadiusFactor = 1.0 / Math.sqrt(3.0) => the bounding sphere exactly matches a spherical mesh.
37758
37775
  */
37759
37776
  constructor(name: string, scene: Scene, options?: {
@@ -37768,6 +37785,7 @@ declare class SolidParticleSystem implements IDisposable {
37768
37785
  enableMultiMaterial?: boolean;
37769
37786
  computeBoundingBox?: boolean;
37770
37787
  autoFixFaceOrientation?: boolean;
37788
+ camera?: TargetCamera;
37771
37789
  });
37772
37790
  /**
37773
37791
  * Builds the SPS underlying mesh. Returns a standard Mesh.
@@ -72576,8 +72594,8 @@ type ListItem<T> = {
72576
72594
  type ListProps<T> = {
72577
72595
  items: ListItem<T>[];
72578
72596
  renderItem: (item: ListItem<T>, index: number) => ReactNode;
72579
- onDelete: (item: ListItem<T>, index: number) => void;
72580
- onAdd: (item?: ListItem<T>) => void;
72597
+ onDelete?: (item: ListItem<T>, index: number) => void;
72598
+ onAdd?: (item?: ListItem<T>) => void;
72581
72599
  addButtonLabel?: string;
72582
72600
  };
72583
72601
  /**
@@ -72589,7 +72607,7 @@ declare function List<T>(props: ListProps<T>): ReactElement;
72589
72607
 
72590
72608
  type MessageBarProps = {
72591
72609
  message: string;
72592
- title: string;
72610
+ title?: string;
72593
72611
  docLink?: string;
72594
72612
  intent: "info" | "success" | "warning" | "error";
72595
72613
  };
@@ -72640,12 +72658,7 @@ type SpinButtonProps = PrimitiveProps<number> & {
72640
72658
  };
72641
72659
  declare const SpinButton: FunctionComponent<SpinButtonProps>;
72642
72660
 
72643
- type SwitchProps = PrimitiveProps<boolean> & {
72644
- /**
72645
- * If true, inverts the switch logic (checked becomes unchecked and vice versa) - only for display purposes!
72646
- */
72647
- invertedMode?: boolean;
72648
- };
72661
+ type SwitchProps = PrimitiveProps<boolean>;
72649
72662
  /**
72650
72663
  * This is a primitive fluent boolean switch component whose only knowledge is the shared styling across all tools
72651
72664
  * @param props
@@ -72964,4 +72977,4 @@ declare const Vector3PropertyLine: FunctionComponent<TensorPropertyLineProps<Vec
72964
72977
  declare const Vector4PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector4>>;
72965
72978
 
72966
72979
  export { Accordion, AccordionSection, AttachDebugLayer, BooleanBadgePropertyLine, BoundProperty, BuiltInsExtensionFeed, Button, ButtonLine, Checkbox, CheckboxPropertyLine, ChildWindow, Collapse, Color3GradientComponent, Color3GradientList, Color3PropertyLine, Color4GradientComponent, Color4GradientList, Color4PropertyLine, ColorPickerPopup, ColorStepGradientComponent, ComboBox, ConstructorFactory, ConvertOptions, DebugServiceIdentity, DetachDebugLayer, DraggableLine, Dropdown, ExtensibleAccordion, FactorGradientComponent, FactorGradientList, FileUploadLine, GetPropertyDescriptor, HexPropertyLine, InfoLabel, InputHexField, InputHsvField, Inspector, InterceptFunction, InterceptProperty, IsPropertyReadonly, LineContainer, Link, LinkPropertyLine, LinkToEntityPropertyLine, List, MakeDialogTeachingMoment, MakeLazyComponent, MakePopoverTeachingMoment, MakePropertyHook, MakeTeachingMoment, MessageBar, NumberDropdown, NumberDropdownPropertyLine, NumberInputPropertyLine, ObservableCollection, Pane, PlaceholderPropertyLine, PositionedPopover, PropertiesServiceIdentity, Property, PropertyLine, QuaternionPropertyLine, RotationVectorPropertyLine, SceneContextIdentity, SceneExplorerServiceIdentity, SearchBar, SearchBox, SelectionServiceDefinition, SelectionServiceIdentity, SettingsContextIdentity, SettingsServiceIdentity, ShellServiceIdentity, ShowInspector, SidePaneContainer, SpinButton, SpinButtonPropertyLine, StatsServiceIdentity, StringDropdown, StringDropdownPropertyLine, StringifiedPropertyLine, Switch, SwitchPropertyLine, SyncedSliderInput, SyncedSliderPropertyLine, TeachingMoment, TextAreaPropertyLine, TextInput, TextInputPropertyLine, TextPropertyLine, Textarea, Theme, ToggleButton, ToolsServiceIdentity, Vector2PropertyLine, Vector3PropertyLine, Vector4PropertyLine, useAngleConverters, useAsyncResource, useColor3Property, useColor4Property, useCompactMode, useEventfulState, useInterceptObservable, useObservableCollection, useObservableState, useOrderedObservableCollection, usePollingObservable, useProperty, useQuaternionProperty, useResource, useSidePaneDockOverrides, useVector3Property };
72967
- export type { AcceptedDropdownValue, AccordionProps, AccordionSectionProps, BasePrimitiveProps, BoundPropertyProps, BuiltInExtension, ButtonProps, CentralContentDefinition, ChildWindowOptions, ChildWindowProps, ColorPickerProps, ColorPropertyLineProps, ComboBoxOption, ComboBoxProps, DraggableLineProps, DropdownOption, DropdownProps, DynamicAccordionSection, DynamicAccordionSectionContent, EntityBase, EntityDisplayInfo, ExtensionMetadata, ExtensionModule, FunctionHooks, HexPropertyLineProps, IDebugService, IExtensionFeed, IExtensionMetadataQuery, IPropertiesService, ISceneContext, ISceneExplorerService, ISelectionService, IService, ISettingsContext, ISettingsService, IShellService, IStatsService, IToolsService, ImmutablePrimitiveProps, InfoLabelParentProps, InfoLabelProps, InputHexProps, InspectorOptions, LinkProps, ListItem, NumberInputPropertyLineProps, PaneProps, PersonMetadata, PrimitiveProps, PropertyHooks, PropertyLineProps, PropertyProps, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, SectionsImperativeRef, ServiceDefinition, ServiceFactory, SidePaneDefinition, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, ToolbarItemDefinition };
72980
+ export type { AcceptedDropdownValue, AccordionProps, AccordionSectionProps, BasePrimitiveProps, BoundPropertyProps, BuiltInExtension, ButtonProps, CentralContentDefinition, ChildWindowOptions, ChildWindowProps, ColorPickerProps, ColorPropertyLineProps, ComboBoxOption, ComboBoxProps, DraggableLineProps, DropdownOption, DropdownProps, DynamicAccordionSection, DynamicAccordionSectionContent, EntityBase, EntityDisplayInfo, ExtensionMetadata, ExtensionModule, FunctionHooks, HexPropertyLineProps, IDebugService, IExtensionFeed, IExtensionMetadataQuery, IPropertiesService, ISceneContext, ISceneExplorerService, ISelectionService, IService, ISettingsContext, ISettingsService, IShellService, IStatsService, IToolsService, ImmutablePrimitiveProps, InfoLabelParentProps, InfoLabelProps, InputHexProps, InspectorOptions, InspectorToken, LinkProps, ListItem, NumberInputPropertyLineProps, PaneProps, PersonMetadata, PrimitiveProps, PropertyHooks, PropertyLineProps, PropertyProps, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, SectionsImperativeRef, ServiceDefinition, ServiceFactory, SidePaneDefinition, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, ToolbarItemDefinition };
package/lib/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { A as Accordion, j as AccordionSection, t as AttachDebugLayer, aI as BooleanBadgePropertyLine, x as BoundProperty, H as BuiltInsExtensionFeed, b as Button, B as ButtonLine, af as Checkbox, e as CheckboxPropertyLine, aD as ChildWindow, C as Collapse, ap as Color3GradientComponent, aF as Color3GradientList, aJ as Color3PropertyLine, aq as Color4GradientComponent, aG as Color4GradientList, aK as Color4PropertyLine, ag as ColorPickerPopup, ar as ColorStepGradientComponent, aj as ComboBox, aa as ConstructorFactory, s as ConvertOptions, D as DebugServiceIdentity, v as DetachDebugLayer, ak as DraggableLine, al as Dropdown, E as ExtensibleAccordion, ao as FactorGradientComponent, aE as FactorGradientList, F as FileUploadLine, a6 as GetPropertyDescriptor, aL as HexPropertyLine, as as InfoLabel, ah as InputHexField, ai as InputHsvField, I as Inspector, a5 as InterceptFunction, a8 as InterceptProperty, a7 as IsPropertyReadonly, aP as LineContainer, L as Link, aN as LinkPropertyLine, z as LinkToEntityPropertyLine, at as List, a4 as MakeDialogTeachingMoment, M as MakeLazyComponent, l as MakePopoverTeachingMoment, R as MakePropertyHook, a3 as MakeTeachingMoment, f as MessageBar, am as NumberDropdown, N as NumberDropdownPropertyLine, aM as NumberInputPropertyLine, a9 as ObservableCollection, aH as Pane, aQ as PlaceholderPropertyLine, au as PositionedPopover, o as PropertiesServiceIdentity, y as Property, aO as PropertyLine, aV as QuaternionPropertyLine, aU as RotationVectorPropertyLine, h as SceneContextIdentity, p as SceneExplorerServiceIdentity, av as SearchBar, aw as SearchBox, ac as SelectionServiceDefinition, ab as SelectionServiceIdentity, ad as SettingsContextIdentity, q as SettingsServiceIdentity, g as ShellServiceIdentity, ae as ShowInspector, n as SidePaneContainer, ax as SpinButton, d as SpinButtonPropertyLine, r as StatsServiceIdentity, an as StringDropdown, w as StringDropdownPropertyLine, aR as StringifiedPropertyLine, ay as Switch, S as SwitchPropertyLine, az as SyncedSliderInput, a as SyncedSliderPropertyLine, m as TeachingMoment, aS as TextAreaPropertyLine, aB as TextInput, c as TextInputPropertyLine, aT as TextPropertyLine, aA as Textarea, G as Theme, aC as ToggleButton, T as ToolsServiceIdentity, aW as Vector2PropertyLine, V as Vector3PropertyLine, aX as Vector4PropertyLine, a2 as useAngleConverters, $ as useAsyncResource, K as useColor3Property, O as useColor4Property, a0 as useCompactMode, W as useEventfulState, U as useInterceptObservable, X as useObservableCollection, i as useObservableState, Y as useOrderedObservableCollection, Z as usePollingObservable, u as useProperty, Q as useQuaternionProperty, _ as useResource, a1 as useSidePaneDockOverrides, J as useVector3Property } from './index-D89pOD_y.js';
1
+ export { A as Accordion, d as AccordionSection, p as AttachDebugLayer, aH as BooleanBadgePropertyLine, t as BoundProperty, y as BuiltInsExtensionFeed, B as Button, e as ButtonLine, ab as Checkbox, C as CheckboxPropertyLine, aB as ChildWindow, ac as Collapse, am as Color3GradientComponent, aE as Color3GradientList, aI as Color3PropertyLine, an as Color4GradientComponent, aF as Color4GradientList, aJ as Color4PropertyLine, ad as ColorPickerPopup, ao as ColorStepGradientComponent, ag as ComboBox, a6 as ConstructorFactory, o as ConvertOptions, D as DebugServiceIdentity, q as DetachDebugLayer, ah as DraggableLine, ai as Dropdown, E as ExtensibleAccordion, al as FactorGradientComponent, aD as FactorGradientList, aC as FileUploadLine, a2 as GetPropertyDescriptor, aK as HexPropertyLine, ap as InfoLabel, ae as InputHexField, af as InputHsvField, I as Inspector, a1 as InterceptFunction, a4 as InterceptProperty, a3 as IsPropertyReadonly, aN as LineContainer, L as Link, aL as LinkPropertyLine, w as LinkToEntityPropertyLine, ar as List, a0 as MakeDialogTeachingMoment, aq as MakeLazyComponent, h as MakePopoverTeachingMoment, J as MakePropertyHook, $ as MakeTeachingMoment, M as MessageBar, aj as NumberDropdown, r as NumberDropdownPropertyLine, N as NumberInputPropertyLine, a5 as ObservableCollection, aG as Pane, aO as PlaceholderPropertyLine, as as PositionedPopover, k as PropertiesServiceIdentity, v as Property, aM as PropertyLine, aV as QuaternionPropertyLine, aU as RotationVectorPropertyLine, b as SceneContextIdentity, l as SceneExplorerServiceIdentity, at as SearchBar, au as SearchBox, a8 as SelectionServiceDefinition, a7 as SelectionServiceIdentity, a9 as SettingsContextIdentity, m as SettingsServiceIdentity, a as ShellServiceIdentity, aa as ShowInspector, j as SidePaneContainer, av as SpinButton, S as SpinButtonPropertyLine, n as StatsServiceIdentity, ak as StringDropdown, s as StringDropdownPropertyLine, aP as StringifiedPropertyLine, aw as Switch, aQ as SwitchPropertyLine, ax as SyncedSliderInput, aR as SyncedSliderPropertyLine, i as TeachingMoment, aS as TextAreaPropertyLine, az as TextInput, T as TextInputPropertyLine, aT as TextPropertyLine, ay as Textarea, x as Theme, aA as ToggleButton, f as ToolsServiceIdentity, aW as Vector2PropertyLine, V as Vector3PropertyLine, aX as Vector4PropertyLine, _ as useAngleConverters, X as useAsyncResource, F as useColor3Property, G as useColor4Property, Y as useCompactMode, O as useEventfulState, K as useInterceptObservable, Q as useObservableCollection, c as useObservableState, R as useOrderedObservableCollection, U as usePollingObservable, u as useProperty, H as useQuaternionProperty, W as useResource, Z as useSidePaneDockOverrides, z as useVector3Property } from './index-BDtiVo5p.js';
2
2
  import 'react/jsx-runtime';
3
3
  import 'react';
4
4
  import '@fluentui/react-components';
@@ -33,6 +33,8 @@ import '@babylonjs/core/Engines/WebGPU/Extensions/engine.query.js';
33
33
  import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollectionStrategies.js';
34
34
  import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension.js';
35
35
  import '@babylonjs/core/Misc/pressureObserverWrapper.js';
36
+ import '@babylonjs/core/Maths/math.scalar.js';
37
+ import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector.js';
36
38
  import '@babylonjs/core/Engines/abstractEngine.js';
37
39
  import 'react-dom/client';
38
40
  import '@babylonjs/core/FrameGraph/frameGraphUtils.js';
@@ -100,6 +102,8 @@ import '@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter.js';
100
102
  import '@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter.js';
101
103
  import '@babylonjs/core/Particles/attractor.js';
102
104
  import '@babylonjs/core/Meshes/Builders/sphereBuilder.js';
105
+ import '@babylonjs/core/Particles/Node/Blocks/particleInputBlock.js';
106
+ import '@babylonjs/core/Particles/Node/Blocks/Update/updateAttractorBlock.js';
103
107
  import '@babylonjs/core/Particles/Node/Enums/nodeParticleBlockConnectionPointTypes.js';
104
108
  import '@babylonjs/core/Meshes/transformNode.js';
105
109
  import '@babylonjs/core/Physics/v2/IPhysicsEnginePlugin.js';
@@ -131,6 +135,16 @@ import '@babylonjs/core/Rendering/boundingBoxRenderer.js';
131
135
  import '@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js';
132
136
  import '@babylonjs/core/Sprites/spriteSceneComponent.js';
133
137
  import '@babylonjs/core/Materials/Textures/dynamicTexture.js';
138
+ import '@babylonjs/core/Misc/equirectangularCapture.js';
139
+ import '@babylonjs/core/Misc/sceneRecorder.js';
140
+ import '@babylonjs/core/Misc/screenshotTools.js';
141
+ import '@babylonjs/core/Misc/videoRecorder.js';
142
+ import '@babylonjs/core/Misc/sceneSerializer.js';
143
+ import '@babylonjs/core/Misc/environmentTextureTools.js';
144
+ import '@babylonjs/core/Loading/sceneLoader.js';
145
+ import '@babylonjs/core/Misc/filesInput.js';
146
+ import '@babylonjs/loaders/glTF/glTFFileLoader.js';
147
+ import '@babylonjs/loaders/glTF/glTFValidation.js';
134
148
  import '@babylonjs/core/Engines/engineStore.js';
135
149
  import '@babylonjs/core/Misc/uniqueIdGenerator.js';
136
150
  import '@babylonjs/core/Debug/debugLayer.js';
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,5 +1,5 @@
1
1
  import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
2
- import { P as Popover, b as Button, c as TextInputPropertyLine, d as SpinButtonPropertyLine, e as CheckboxPropertyLine, V as Vector3PropertyLine, u as useProperty, f as MessageBar, g as ShellServiceIdentity, h as SceneContextIdentity, i as useObservableState, A as Accordion, j as AccordionSection } from './index-D89pOD_y.js';
2
+ import { P as Popover, B as Button, T as TextInputPropertyLine, S as SpinButtonPropertyLine, C as CheckboxPropertyLine, V as Vector3PropertyLine, u as useProperty, M as MessageBar, a as ShellServiceIdentity, b as SceneContextIdentity, c as useObservableState, A as Accordion, d as AccordionSection } from './index-BDtiVo5p.js';
3
3
  import { SettingsRegular, CollectionsAdd20Regular } from '@fluentui/react-icons';
4
4
  import '@babylonjs/core/Particles/webgl2ParticleSystem.js';
5
5
  import { MeshBuilder } from '@babylonjs/core/Meshes/meshBuilder.js';
@@ -57,6 +57,8 @@ import '@babylonjs/core/Engines/WebGPU/Extensions/engine.query.js';
57
57
  import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollectionStrategies.js';
58
58
  import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension.js';
59
59
  import '@babylonjs/core/Misc/pressureObserverWrapper.js';
60
+ import '@babylonjs/core/Maths/math.scalar.js';
61
+ import '@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector.js';
60
62
  import '@babylonjs/core/Engines/abstractEngine.js';
61
63
  import 'react-dom/client';
62
64
  import '@babylonjs/core/FrameGraph/frameGraphUtils.js';
@@ -114,6 +116,8 @@ import '@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter.js';
114
116
  import '@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter.js';
115
117
  import '@babylonjs/core/Particles/attractor.js';
116
118
  import '@babylonjs/core/Meshes/Builders/sphereBuilder.js';
119
+ import '@babylonjs/core/Particles/Node/Blocks/particleInputBlock.js';
120
+ import '@babylonjs/core/Particles/Node/Blocks/Update/updateAttractorBlock.js';
117
121
  import '@babylonjs/core/Particles/Node/Enums/nodeParticleBlockConnectionPointTypes.js';
118
122
  import '@babylonjs/core/Meshes/transformNode.js';
119
123
  import '@babylonjs/core/Physics/v2/IPhysicsEnginePlugin.js';
@@ -139,6 +143,15 @@ import '@babylonjs/core/Rendering/boundingBoxRenderer.js';
139
143
  import '@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js';
140
144
  import '@babylonjs/core/Sprites/spriteSceneComponent.js';
141
145
  import '@babylonjs/core/Materials/Textures/dynamicTexture.js';
146
+ import '@babylonjs/core/Misc/equirectangularCapture.js';
147
+ import '@babylonjs/core/Misc/sceneRecorder.js';
148
+ import '@babylonjs/core/Misc/screenshotTools.js';
149
+ import '@babylonjs/core/Misc/videoRecorder.js';
150
+ import '@babylonjs/core/Misc/sceneSerializer.js';
151
+ import '@babylonjs/core/Misc/environmentTextureTools.js';
152
+ import '@babylonjs/core/Loading/sceneLoader.js';
153
+ import '@babylonjs/loaders/glTF/glTFFileLoader.js';
154
+ import '@babylonjs/loaders/glTF/glTFValidation.js';
142
155
  import '@babylonjs/core/Engines/engineStore.js';
143
156
  import '@babylonjs/core/Misc/uniqueIdGenerator.js';
144
157
  import '@babylonjs/core/Debug/debugLayer.js';
@@ -690,4 +703,4 @@ var quickCreateToolsService = {
690
703
  };
691
704
 
692
705
  export { CreateToolsServiceDefinition, quickCreateToolsService as default };
693
- //# sourceMappingURL=quickCreateToolsService-CBcmm2Zr.js.map
706
+ //# sourceMappingURL=quickCreateToolsService-XuuTpQe7.js.map