@babylonjs/inspector 8.45.3-preview → 8.45.4-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
@@ -66,6 +66,11 @@ type InfoLabelProps = {
66
66
  htmlFor: string;
67
67
  info?: JSX.Element;
68
68
  label: string;
69
+ className?: string;
70
+ /**
71
+ * When true, applies flex layout styling to the label slot for proper truncation in flex containers
72
+ */
73
+ flexLabel?: boolean;
69
74
  };
70
75
  type InfoLabelParentProps = Omit<InfoLabelProps, "htmlFor">;
71
76
  /**
@@ -247,6 +252,10 @@ interface ISettingsContext extends IService<typeof SettingsContextIdentity> {
247
252
  * Ignore backfaces when picking.
248
253
  */
249
254
  ignoreBackfacesForPicking: boolean;
255
+ /**
256
+ * Only show Euler angles in rotation properties.
257
+ */
258
+ useEuler: boolean;
250
259
  /**
251
260
  * Shows the Properties pane when an entity is selected.
252
261
  */
@@ -1269,13 +1278,13 @@ declare const Accordion: ForwardRefExoticComponent<AccordionProps & {
1269
1278
  } & RefAttributes<HTMLDivElement>>;
1270
1279
 
1271
1280
  type ButtonProps = BasePrimitiveProps & {
1272
- onClick?: (e?: MouseEvent<HTMLButtonElement>) => void;
1281
+ onClick?: (e?: MouseEvent<HTMLButtonElement>) => unknown | Promise<unknown>;
1273
1282
  icon?: FluentIcon;
1274
1283
  appearance?: "subtle" | "transparent" | "primary";
1275
1284
  label?: string;
1276
1285
  };
1277
1286
  declare const Button: react.ForwardRefExoticComponent<BasePrimitiveProps & {
1278
- onClick?: (e?: MouseEvent<HTMLButtonElement>) => void;
1287
+ onClick?: (e?: MouseEvent<HTMLButtonElement>) => unknown | Promise<unknown>;
1279
1288
  icon?: FluentIcon;
1280
1289
  appearance?: "subtle" | "transparent" | "primary";
1281
1290
  label?: string;
@@ -20116,6 +20125,13 @@ declare class BaseParticleSystem implements IClipPlanesHolder {
20116
20125
  * @param angle The base angle of the cone
20117
20126
  */
20118
20127
  createConeEmitter(radius?: number, angle?: number): ConeParticleEmitter;
20128
+ /**
20129
+ * Creates a Cone Emitter for the particle system (emits from the cone to the particle position)
20130
+ * @param radius The radius of the cone to emit from
20131
+ * @param angle The base angle of the cone
20132
+ * @param direction1 Particles are emitted between the direction1 and direction2 from within the cone
20133
+ * @param direction2 Particles are emitted between the direction1 and direction2 from within the cone
20134
+ */
20119
20135
  createDirectedConeEmitter(radius?: number, angle?: number, direction1?: Vector3, direction2?: Vector3): ConeDirectedParticleEmitter;
20120
20136
  /**
20121
20137
  * Creates a Box Emitter for the particle system. (emits between direction1 and direction2 from withing the box defined by minEmitBox and maxEmitBox)
@@ -20377,6 +20393,9 @@ declare class ThinParticleSystem extends BaseParticleSystem implements IDisposab
20377
20393
  * Gets the index buffer used by the particle system (or null if no index buffer is used (if _useInstancing=true))
20378
20394
  */
20379
20395
  get indexBuffer(): Nullable<DataBuffer>;
20396
+ /**
20397
+ * Gets or sets a texture used to add random noise to particle positions
20398
+ */
20380
20399
  get noiseTexture(): Nullable<ProceduralTexture>;
20381
20400
  set noiseTexture(value: Nullable<ProceduralTexture>);
20382
20401
  /**
@@ -20393,6 +20412,10 @@ declare class ThinParticleSystem extends BaseParticleSystem implements IDisposab
20393
20412
  constructor(name: string, capacity: number, sceneOrEngine: Scene | AbstractEngine, customEffect?: Nullable<Effect>, isAnimationSheetEnabled?: boolean, epsilon?: number, noUpdateQueue?: boolean);
20394
20413
  /** @internal */
20395
20414
  _emitFromParticle: (particle: Particle) => void;
20415
+ /**
20416
+ * Serializes the particle system to a JSON object.
20417
+ * @param _serializeTexture Whether to serialize the texture information
20418
+ */
20396
20419
  serialize(_serializeTexture: boolean): void;
20397
20420
  /**
20398
20421
  * Clones the particle system.
@@ -20405,6 +20428,9 @@ declare class ThinParticleSystem extends BaseParticleSystem implements IDisposab
20405
20428
  private _removeFactorGradient;
20406
20429
  private _syncLifeTimeCreation;
20407
20430
  private _syncStartSizeCreation;
20431
+ /**
20432
+ * The amount of time the particle system is running (depends of the overall update speed).
20433
+ */
20408
20434
  get targetStopDuration(): number;
20409
20435
  set targetStopDuration(value: number);
20410
20436
  /**
@@ -21458,6 +21484,10 @@ declare class SystemBlock extends NodeParticleBlock {
21458
21484
  * Gets the rampGradient input component
21459
21485
  */
21460
21486
  get rampGradient(): NodeParticleConnectionPoint;
21487
+ /**
21488
+ * Gets the emitterPosition input component
21489
+ */
21490
+ get emitterPosition(): NodeParticleConnectionPoint;
21461
21491
  /**
21462
21492
  * Gets the system output component
21463
21493
  */
@@ -21833,6 +21863,10 @@ declare class ParticleSystem extends ThinParticleSystem {
21833
21863
  * @param attractor The attractor to remove from the particle system
21834
21864
  */
21835
21865
  removeAttractor(attractor: Attractor): void;
21866
+ /**
21867
+ * Starts the particle system and begins to emit
21868
+ * @param delay defines the delay in milliseconds before starting the system (this.startDelay by default)
21869
+ */
21836
21870
  start(delay?: number): void;
21837
21871
  /**
21838
21872
  * Creates a Hemisphere Emitter for the particle system (emits along the hemisphere radius)
@@ -21882,6 +21916,14 @@ declare class ParticleSystem extends ThinParticleSystem {
21882
21916
  * @returns the emitter
21883
21917
  */
21884
21918
  createConeEmitter(radius?: number, angle?: number): ConeParticleEmitter;
21919
+ /**
21920
+ * Creates a Cone Emitter for the particle system (emits from the cone to the particle position)
21921
+ * @param radius The radius of the cone to emit from
21922
+ * @param angle The base angle of the cone
21923
+ * @param direction1 Particles are emitted between the direction1 and direction2 from within the cone
21924
+ * @param direction2 Particles are emitted between the direction1 and direction2 from within the cone
21925
+ * @returns the emitter
21926
+ */
21885
21927
  createDirectedConeEmitter(radius?: number, angle?: number, direction1?: Vector3, direction2?: Vector3): ConeDirectedParticleEmitter;
21886
21928
  /**
21887
21929
  * Creates a Box Emitter for the particle system. (emits between direction1 and direction2 from withing the box defined by minEmitBox and maxEmitBox)
@@ -49287,7 +49329,6 @@ declare class NodeRenderGraphBlock {
49287
49329
 
49288
49330
  /**
49289
49331
  * Represents a task in a frame graph.
49290
- * @experimental
49291
49332
  */
49292
49333
  declare abstract class FrameGraphTask {
49293
49334
  protected readonly _frameGraph: FrameGraph;
@@ -49631,7 +49672,6 @@ declare class FrameGraphContext {
49631
49672
 
49632
49673
  /**
49633
49674
  * @internal
49634
- * @experimental
49635
49675
  */
49636
49676
  declare class FrameGraphRenderTarget {
49637
49677
  protected readonly _textureManager: FrameGraphTextureManager;
@@ -49679,7 +49719,6 @@ declare enum FrameGraphTextureNamespace {
49679
49719
  }
49680
49720
  /**
49681
49721
  * Manages the textures used by a frame graph
49682
- * @experimental
49683
49722
  */
49684
49723
  declare class FrameGraphTextureManager {
49685
49724
  readonly engine: AbstractEngine;
@@ -49894,7 +49933,6 @@ declare class FrameGraphTextureManager {
49894
49933
 
49895
49934
  /**
49896
49935
  * Class used to implement a frame graph
49897
- * @experimental
49898
49936
  */
49899
49937
  declare class FrameGraph implements IDisposable {
49900
49938
  private readonly _linkedNodeRenderGraph;
@@ -50007,11 +50045,6 @@ declare class FrameGraph implements IDisposable {
50007
50045
  private _addPass;
50008
50046
  /** @internal */
50009
50047
  _whenAsynchronousInitializationDoneAsync(): Promise<void>;
50010
- /**
50011
- * @deprecated Use buildAsync instead
50012
- */
50013
- build(): void;
50014
- private _built;
50015
50048
  /**
50016
50049
  * Builds the frame graph.
50017
50050
  * This method should be called after all tasks have been added to the frame graph (FrameGraph.addTask) and before the graph is executed (FrameGraph.execute).
@@ -50253,11 +50286,6 @@ declare class NodeRenderGraph {
50253
50286
  * @param additionalConfig Additional configuration for the FGE
50254
50287
  */
50255
50288
  private _createNodeEditor;
50256
- /**
50257
- * @deprecated Use buildAsync instead
50258
- * @param dontBuildFrameGraph If the underlying frame graph should not be built (default: false)
50259
- */
50260
- build(dontBuildFrameGraph?: boolean): void;
50261
50289
  /**
50262
50290
  * Build the final list of blocks that will be executed by the "execute" method.
50263
50291
  * It also builds the underlying frame graph unless specified otherwise.
@@ -51207,7 +51235,6 @@ declare class FrameGraphShadowGeneratorTask extends FrameGraphTask {
51207
51235
 
51208
51236
  /**
51209
51237
  * Structure used by the frame graph to reference objects.
51210
- * @experimental
51211
51238
  */
51212
51239
  declare class FrameGraphObjectList {
51213
51240
  /**
@@ -51222,7 +51249,6 @@ declare class FrameGraphObjectList {
51222
51249
 
51223
51250
  /**
51224
51251
  * Frame graph context used render passes.
51225
- * @experimental
51226
51252
  */
51227
51253
  declare class FrameGraphRenderContext extends FrameGraphContext {
51228
51254
  private readonly _effectRenderer;
@@ -72374,7 +72400,7 @@ type LazyComponentProps = {
72374
72400
  * @param defaultProps Options for the loading spinner.
72375
72401
  * @returns A React component that displays a spinner while loading the async component.
72376
72402
  */
72377
- declare function MakeLazyComponent<ComponentT extends ComponentType<any>>(getComponentAsync: () => Promise<ComponentT>, defaultProps?: LazyComponentProps): react.ForwardRefExoticComponent<react.PropsWithoutRef<ComponentProps<ComponentT> & LazyComponentProps> & react.RefAttributes<ElementRef<ComponentT | _fluentui_react_utilities.ForwardRefComponent<SpinnerProps>>>>;
72403
+ declare function MakeLazyComponent<ComponentT extends ComponentType<any>>(getComponentAsync: () => Promise<ComponentT>, defaultProps?: LazyComponentProps): react.ForwardRefExoticComponent<react.PropsWithoutRef<ComponentProps<ComponentT> & LazyComponentProps> & react.RefAttributes<ElementRef<_fluentui_react_utilities.ForwardRefComponent<SpinnerProps> | ComponentT>>>;
72378
72404
 
72379
72405
  type LinkProps = ImmutablePrimitiveProps<string> & {
72380
72406
  /**
@@ -72790,6 +72816,10 @@ type QuaternionPropertyLineProps = TensorPropertyLineProps<Quaternion> & {
72790
72816
  * Display angles as degrees instead of radians
72791
72817
  */
72792
72818
  useDegrees?: boolean;
72819
+ /**
72820
+ * Display angles as Euler angles instead of quaternions
72821
+ */
72822
+ useEuler?: boolean;
72793
72823
  };
72794
72824
  declare const QuaternionPropertyLine: FunctionComponent<QuaternionPropertyLineProps>;
72795
72825
  declare const Vector2PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector2>>;
package/lib/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { A as Accordion, h as AccordionSection, r as AttachDebugLayer, aH as BooleanBadgePropertyLine, v as BoundProperty, y as BuiltInsExtensionFeed, b as Button, B as ButtonLine, ad as Checkbox, e as CheckboxPropertyLine, aC as ChildWindow, C as Collapse, an as Color3GradientComponent, aE as Color3GradientList, aI as Color3PropertyLine, ao as Color4GradientComponent, aF as Color4GradientList, aJ as Color4PropertyLine, ae as ColorPickerPopup, ap as ColorStepGradientComponent, ah as ComboBox, a8 as ConstructorFactory, q as ConvertOptions, D as DebugServiceIdentity, s as DetachDebugLayer, ai as DraggableLine, aj as Dropdown, E as ExtensibleAccordion, am as FactorGradientComponent, aD as FactorGradientList, F as FileUploadLine, a4 as GetPropertyDescriptor, aK as HexPropertyLine, aq as InfoLabel, af as InputHexField, ag as InputHsvField, I as Inspector, a3 as InterceptFunction, a6 as InterceptProperty, a5 as IsPropertyReadonly, aO as LineContainer, L as Link, aM as LinkPropertyLine, w as LinkToEntityPropertyLine, ar as List, a2 as MakeDialogTeachingMoment, M as MakeLazyComponent, j as MakePopoverTeachingMoment, O as MakePropertyHook, a1 as MakeTeachingMoment, as as MessageBar, ak as NumberDropdown, N as NumberDropdownPropertyLine, aL as NumberInputPropertyLine, a7 as ObservableCollection, aG as Pane, aP as PlaceholderPropertyLine, at as PositionedPopover, m as PropertiesServiceIdentity, aN as PropertyLine, aU as QuaternionPropertyLine, aT as RotationVectorPropertyLine, g as SceneContextIdentity, n as SceneExplorerServiceIdentity, au as SearchBar, av as SearchBox, aa as SelectionServiceDefinition, a9 as SelectionServiceIdentity, ab as SettingsContextIdentity, o as SettingsServiceIdentity, f as ShellServiceIdentity, ac as ShowInspector, l as SidePaneContainer, aw as SpinButton, d as SpinButtonPropertyLine, p as StatsServiceIdentity, al as StringDropdown, t as StringDropdownPropertyLine, aQ as StringifiedPropertyLine, ax as Switch, S as SwitchPropertyLine, ay as SyncedSliderInput, a as SyncedSliderPropertyLine, k as TeachingMoment, aR as TextAreaPropertyLine, aA as TextInput, c as TextInputPropertyLine, aS as TextPropertyLine, az as Textarea, x as Theme, aB as ToggleButton, T as ToolsServiceIdentity, aV as Vector2PropertyLine, V as Vector3PropertyLine, aW as Vector4PropertyLine, a0 as useAngleConverters, Z as useAsyncResource, H as useColor3Property, J as useColor4Property, _ as useCompactMode, R as useEventfulState, Q as useInterceptObservable, U as useObservableCollection, u as useObservableState, W as useOrderedObservableCollection, X as usePollingObservable, z as useProperty, K as useQuaternionProperty, Y as useResource, $ as useSidePaneDockOverrides, G as useVector3Property } from './index-D450kD0o.js';
1
+ export { A as Accordion, h as AccordionSection, r as AttachDebugLayer, aH as BooleanBadgePropertyLine, v as BoundProperty, y as BuiltInsExtensionFeed, b as Button, B as ButtonLine, ad as Checkbox, e as CheckboxPropertyLine, aC as ChildWindow, C as Collapse, an as Color3GradientComponent, aE as Color3GradientList, aI as Color3PropertyLine, ao as Color4GradientComponent, aF as Color4GradientList, aJ as Color4PropertyLine, ae as ColorPickerPopup, ap as ColorStepGradientComponent, ah as ComboBox, a8 as ConstructorFactory, q as ConvertOptions, D as DebugServiceIdentity, s as DetachDebugLayer, ai as DraggableLine, aj as Dropdown, E as ExtensibleAccordion, am as FactorGradientComponent, aD as FactorGradientList, F as FileUploadLine, a4 as GetPropertyDescriptor, aK as HexPropertyLine, aq as InfoLabel, af as InputHexField, ag as InputHsvField, I as Inspector, a3 as InterceptFunction, a6 as InterceptProperty, a5 as IsPropertyReadonly, aO as LineContainer, L as Link, aM as LinkPropertyLine, w as LinkToEntityPropertyLine, ar as List, a2 as MakeDialogTeachingMoment, M as MakeLazyComponent, j as MakePopoverTeachingMoment, O as MakePropertyHook, a1 as MakeTeachingMoment, as as MessageBar, ak as NumberDropdown, N as NumberDropdownPropertyLine, aL as NumberInputPropertyLine, a7 as ObservableCollection, aG as Pane, aP as PlaceholderPropertyLine, at as PositionedPopover, m as PropertiesServiceIdentity, aN as PropertyLine, aU as QuaternionPropertyLine, aT as RotationVectorPropertyLine, g as SceneContextIdentity, n as SceneExplorerServiceIdentity, au as SearchBar, av as SearchBox, aa as SelectionServiceDefinition, a9 as SelectionServiceIdentity, ab as SettingsContextIdentity, o as SettingsServiceIdentity, f as ShellServiceIdentity, ac as ShowInspector, l as SidePaneContainer, aw as SpinButton, d as SpinButtonPropertyLine, p as StatsServiceIdentity, al as StringDropdown, t as StringDropdownPropertyLine, aQ as StringifiedPropertyLine, ax as Switch, S as SwitchPropertyLine, ay as SyncedSliderInput, a as SyncedSliderPropertyLine, k as TeachingMoment, aR as TextAreaPropertyLine, aA as TextInput, c as TextInputPropertyLine, aS as TextPropertyLine, az as Textarea, x as Theme, aB as ToggleButton, T as ToolsServiceIdentity, aV as Vector2PropertyLine, V as Vector3PropertyLine, aW as Vector4PropertyLine, a0 as useAngleConverters, Z as useAsyncResource, H as useColor3Property, J as useColor4Property, _ as useCompactMode, R as useEventfulState, Q as useInterceptObservable, U as useObservableCollection, u as useObservableState, W as useOrderedObservableCollection, X as usePollingObservable, z as useProperty, K as useQuaternionProperty, Y as useResource, $ as useSidePaneDockOverrides, G as useVector3Property } from './index-upm3WBf8.js';
2
2
  import 'react/jsx-runtime';
3
3
  import 'react';
4
4
  import '@babylonjs/core/Maths/math.color.js';
@@ -60,18 +60,21 @@ import '@babylonjs/core/Lights/rectAreaLight.js';
60
60
  import '@babylonjs/core/Lights/shadowLight.js';
61
61
  import '@babylonjs/core/Lights/spotLight.js';
62
62
  import '@babylonjs/core/Lights/Shadows/cascadedShadowGenerator.js';
63
+ import '@babylonjs/core/Debug/directionalLightFrustumViewer.js';
63
64
  import '@babylonjs/core/Lights/Shadows/shadowGenerator.js';
64
65
  import '@babylonjs/core/Lights/Shadows/shadowGeneratorSceneComponent.js';
65
66
  import '@babylonjs/core/Materials/material.js';
66
67
  import '@babylonjs/core/Materials/multiMaterial.js';
67
- import '@babylonjs/core/Materials/PBR/pbrBaseMaterial.js';
68
+ import '@babylonjs/core/Materials/Node/nodeMaterial.js';
68
69
  import '@babylonjs/core/Materials/PBR/openpbrMaterial.js';
70
+ import '@babylonjs/core/Materials/PBR/pbrBaseMaterial.js';
69
71
  import '@babylonjs/materials/sky/skyMaterial.js';
70
72
  import '@babylonjs/core/Engines/constants.js';
71
73
  import '@babylonjs/core/Engines/engine.js';
72
74
  import '@babylonjs/core/Particles/particleSystem.js';
73
- import '@babylonjs/core/Materials/Textures/cubeTexture.js';
74
75
  import '@babylonjs/core/Misc/fileTools.js';
76
+ import '@babylonjs/core/Materials/Textures/cubeTexture.js';
77
+ import '@babylonjs/core/Meshes/GaussianSplatting/gaussianSplattingMesh.js';
75
78
  import '@babylonjs/core/Meshes/mesh.js';
76
79
  import '@babylonjs/core/Debug/skeletonViewer.js';
77
80
  import '@babylonjs/core/Meshes/buffer.js';
@@ -80,7 +83,6 @@ import '@babylonjs/core/Meshes/instancedMesh.js';
80
83
  import '@babylonjs/core/Rendering/renderingManager.js';
81
84
  import '@babylonjs/core/Rendering/edgesRenderer.js';
82
85
  import '@babylonjs/core/Rendering/outlineRenderer.js';
83
- import '@babylonjs/core/Meshes/GaussianSplatting/gaussianSplattingMesh.js';
84
86
  import '@babylonjs/core/Particles/EmitterTypes/boxParticleEmitter.js';
85
87
  import '@babylonjs/core/Particles/EmitterTypes/coneParticleEmitter.js';
86
88
  import '@babylonjs/core/Particles/EmitterTypes/cylinderParticleEmitter.js';
@@ -88,6 +90,7 @@ import '@babylonjs/core/Particles/EmitterTypes/hemisphericParticleEmitter.js';
88
90
  import '@babylonjs/core/Particles/EmitterTypes/meshParticleEmitter.js';
89
91
  import '@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter.js';
90
92
  import '@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter.js';
93
+ import '@babylonjs/core/Particles/Node/nodeParticleSystemSet.helper.js';
91
94
  import '@babylonjs/core/Particles/particleHelper.js';
92
95
  import '@babylonjs/core/Misc/gradients.js';
93
96
  import '@babylonjs/core/Materials/Node/Blocks/gradientBlock.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, f as ShellServiceIdentity, g as SceneContextIdentity, u as useObservableState, A as Accordion, h as AccordionSection } from './index-D450kD0o.js';
2
+ import { P as Popover, b as Button, c as TextInputPropertyLine, d as SpinButtonPropertyLine, e as CheckboxPropertyLine, V as Vector3PropertyLine, f as ShellServiceIdentity, g as SceneContextIdentity, u as useObservableState, A as Accordion, h as AccordionSection } from './index-upm3WBf8.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';
@@ -69,17 +69,19 @@ import '@babylonjs/core/Lights/hemisphericLight.js';
69
69
  import '@babylonjs/core/Lights/rectAreaLight.js';
70
70
  import '@babylonjs/core/Lights/shadowLight.js';
71
71
  import '@babylonjs/core/Lights/Shadows/cascadedShadowGenerator.js';
72
+ import '@babylonjs/core/Debug/directionalLightFrustumViewer.js';
72
73
  import '@babylonjs/core/Lights/Shadows/shadowGenerator.js';
73
74
  import '@babylonjs/core/Lights/Shadows/shadowGeneratorSceneComponent.js';
74
75
  import '@babylonjs/core/Materials/material.js';
75
76
  import '@babylonjs/core/Materials/multiMaterial.js';
76
- import '@babylonjs/core/Materials/PBR/pbrBaseMaterial.js';
77
77
  import '@babylonjs/core/Materials/PBR/openpbrMaterial.js';
78
+ import '@babylonjs/core/Materials/PBR/pbrBaseMaterial.js';
78
79
  import '@babylonjs/materials/sky/skyMaterial.js';
79
80
  import '@babylonjs/core/Engines/constants.js';
80
81
  import '@babylonjs/core/Engines/engine.js';
81
- import '@babylonjs/core/Materials/Textures/cubeTexture.js';
82
82
  import '@babylonjs/core/Misc/fileTools.js';
83
+ import '@babylonjs/core/Materials/Textures/cubeTexture.js';
84
+ import '@babylonjs/core/Meshes/GaussianSplatting/gaussianSplattingMesh.js';
83
85
  import '@babylonjs/core/Meshes/mesh.js';
84
86
  import '@babylonjs/core/Debug/skeletonViewer.js';
85
87
  import '@babylonjs/core/Meshes/buffer.js';
@@ -88,7 +90,6 @@ import '@babylonjs/core/Meshes/instancedMesh.js';
88
90
  import '@babylonjs/core/Rendering/renderingManager.js';
89
91
  import '@babylonjs/core/Rendering/edgesRenderer.js';
90
92
  import '@babylonjs/core/Rendering/outlineRenderer.js';
91
- import '@babylonjs/core/Meshes/GaussianSplatting/gaussianSplattingMesh.js';
92
93
  import '@babylonjs/core/Particles/EmitterTypes/boxParticleEmitter.js';
93
94
  import '@babylonjs/core/Particles/EmitterTypes/coneParticleEmitter.js';
94
95
  import '@babylonjs/core/Particles/EmitterTypes/cylinderParticleEmitter.js';
@@ -96,6 +97,7 @@ import '@babylonjs/core/Particles/EmitterTypes/hemisphericParticleEmitter.js';
96
97
  import '@babylonjs/core/Particles/EmitterTypes/meshParticleEmitter.js';
97
98
  import '@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter.js';
98
99
  import '@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter.js';
100
+ import '@babylonjs/core/Particles/Node/nodeParticleSystemSet.helper.js';
99
101
  import '@babylonjs/core/Particles/particleHelper.js';
100
102
  import '@babylonjs/core/Misc/gradients.js';
101
103
  import '@babylonjs/core/Materials/Node/Blocks/gradientBlock.js';
@@ -542,4 +544,4 @@ var quickCreateToolsService = {
542
544
  };
543
545
 
544
546
  export { CreateToolsServiceDefinition, quickCreateToolsService as default };
545
- //# sourceMappingURL=quickCreateToolsService-gqXZXpNH.js.map
547
+ //# sourceMappingURL=quickCreateToolsService-ROfMXsQm.js.map