@babylonjs/inspector 8.46.2-preview → 8.47.0-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
@@ -24,7 +24,7 @@ type BaseBoundPropertyProps<TargetT extends object, PropertyKeyT extends keyof T
24
24
  component: ComponentT;
25
25
  target: TargetT | null | undefined;
26
26
  propertyKey: PropertyKeyT;
27
- /** Optional path from the root object to the property, used for generating the onCopy string */
27
+ /** Optional propertyPath used to generate the copyString if path to property is not equal to entity.target */
28
28
  propertyPath?: string;
29
29
  convertTo?: (value: TargetT[PropertyKeyT]) => TargetT[PropertyKeyT];
30
30
  convertFrom?: (value: TargetT[PropertyKeyT]) => TargetT[PropertyKeyT];
@@ -63,14 +63,24 @@ declare function BoundPropertyImpl<TargetT extends object, PropertyKeyT extends
63
63
  * @returns JSX element
64
64
  */
65
65
  declare const BoundProperty: typeof BoundPropertyImpl;
66
+ /**
67
+ * Mutually exclusive propertyPath or functionPath - one required
68
+ */
69
+ type RequiredPropertyPath = {
70
+ propertyPath: string;
71
+ functionPath?: never;
72
+ } | {
73
+ functionPath: string;
74
+ propertyPath?: never;
75
+ };
66
76
  /**
67
77
  * Props for Property component - a simpler version of BoundProperty that only handles onCopy functionality
68
78
  * Pass in the full propertyPath from entity to property (e.g. "meshes[0].position.x") to ensure copyString is accurate
79
+ * Use functionPath for function-based properties (e.g. "setEnabled" generates "debugNode.setEnabled(value)")
69
80
  */
70
81
  type PropertyProps<ComponentT extends ComponentType<any>> = Omit<ComponentProps<ComponentT>, "onCopy"> & {
71
82
  component: ComponentT;
72
- propertyPath: string;
73
- };
83
+ } & RequiredPropertyPath;
74
84
  declare function PropertyImpl<ComponentT extends ComponentType<any>>(props: PropertyProps<ComponentT>, ref?: any): react_jsx_runtime.JSX.Element;
75
85
  /**
76
86
  * A simpler version of BoundProperty that only provides the onCopy functionality.
@@ -1300,13 +1310,13 @@ declare const Accordion: ForwardRefExoticComponent<AccordionProps & {
1300
1310
  type ButtonProps = BasePrimitiveProps & {
1301
1311
  onClick?: (e?: MouseEvent<HTMLButtonElement>) => unknown | Promise<unknown>;
1302
1312
  icon?: FluentIcon;
1303
- appearance?: "subtle" | "transparent" | "primary";
1313
+ appearance?: "subtle" | "transparent" | "primary" | "secondary";
1304
1314
  label?: string;
1305
1315
  };
1306
1316
  declare const Button: react.ForwardRefExoticComponent<BasePrimitiveProps & {
1307
1317
  onClick?: (e?: MouseEvent<HTMLButtonElement>) => unknown | Promise<unknown>;
1308
1318
  icon?: FluentIcon;
1309
- appearance?: "subtle" | "transparent" | "primary";
1319
+ appearance?: "subtle" | "transparent" | "primary" | "secondary";
1310
1320
  label?: string;
1311
1321
  } & react.RefAttributes<HTMLButtonElement>>;
1312
1322
 
@@ -16015,7 +16025,7 @@ declare class Material implements IAnimatable, IClipPlanesHolder {
16015
16025
  * | 0 | ALPHA_DISABLE | |
16016
16026
  * | 1 | ALPHA_ADD | Defines that alpha blending is COLOR=SRC_ALPHA * SRC + DEST, ALPHA=DEST_ALPHA |
16017
16027
  * | 2 | ALPHA_COMBINE | Defines that alpha blending is COLOR=SRC_ALPHA * SRC + (1 - SRC_ALPHA) * DEST, ALPHA=SRC_ALPHA + DEST_ALPHA |
16018
- * | 3 | ALPHA_SUBTRACT | Defines that alpha blending is COLOR=(1 - SRC) * DEST, ALPHA=SRC_ALPHA - DEST_ALPHA |
16028
+ * | 3 | ALPHA_SUBTRACT | Defines that alpha blending is COLOR=(1 - SRC) * DEST, ALPHA=SRC_ALPHA + DEST_ALPHA |
16019
16029
  * | 4 | ALPHA_MULTIPLY | Defines that alpha blending is COLOR=DEST * SRC, ALPHA=SRC_ALPHA + DEST_ALPHA |
16020
16030
  * | 5 | ALPHA_MAXIMIZED | Defines that alpha blending is COLOR=SRC_ALPHA * SRC + (1 - SRC) * DEST, ALPHA=SRC_ALPHA + DEST_ALPHA |
16021
16031
  * | 6 | ALPHA_ONEONE | Defines that alpha blending is COLOR=SRC + DEST, ALPHA=DEST_ALPHA |
@@ -21626,6 +21636,8 @@ interface INodeParticleEditorOptions {
21626
21636
  /** Additional configuration for the NPE */
21627
21637
  nodeEditorConfig?: {
21628
21638
  backgroundColor?: Color4;
21639
+ /** If true, the node particle system set will be disposed when the editor is closed (default: true) */
21640
+ disposeOnClose?: boolean;
21629
21641
  };
21630
21642
  }
21631
21643
  /**
@@ -33046,6 +33058,16 @@ declare class PhysicsBody {
33046
33058
  * @param instanceIndex For a instanced body, the instance to where the impulse should be applied. If not specified, the impulse is applied to all instances.
33047
33059
  */
33048
33060
  applyAngularImpulse(angularImpulse: Vector3, instanceIndex?: number): void;
33061
+ /**
33062
+ * Applies a torque to the physics body.
33063
+ *
33064
+ * @param torque The torque vector.
33065
+ * @param instanceIndex For a instanced body, the instance to where the torque should be applied. If not specified, the torque is applied to all instances.
33066
+ *
33067
+ * This method is useful for applying a torque to a physics body, which can be used to simulate rotational forces such as motors,
33068
+ * angular momentum, and rotational dynamics. This can be used to create realistic physics simulations in a game or other application.
33069
+ */
33070
+ applyTorque(torque: Vector3, instanceIndex?: number): void;
33049
33071
  /**
33050
33072
  * Applies a force to the physics object.
33051
33073
  *
@@ -33682,6 +33704,7 @@ interface IPhysicsEnginePluginV2 {
33682
33704
  applyImpulse(body: PhysicsBody, impulse: Vector3, location: Vector3, instanceIndex?: number): void;
33683
33705
  applyAngularImpulse(body: PhysicsBody, angularImpulse: Vector3, instanceIndex?: number): void;
33684
33706
  applyForce(body: PhysicsBody, force: Vector3, location: Vector3, instanceIndex?: number): void;
33707
+ applyTorque(body: PhysicsBody, torque: Vector3, instanceIndex?: number): void;
33685
33708
  setAngularVelocity(body: PhysicsBody, angVel: Vector3, instanceIndex?: number): void;
33686
33709
  getAngularVelocityToRef(body: PhysicsBody, angVel: Vector3, instanceIndex?: number): void;
33687
33710
  getBodyGeometry(body: PhysicsBody): object;
@@ -48041,6 +48064,12 @@ declare class UtilityLayerRenderer implements IDisposable {
48041
48064
  * A shared utility layer that can be used to embed objects into a scene (Depth map of the previous scene is not cleared before drawing on top of it)
48042
48065
  */
48043
48066
  static get DefaultKeepDepthUtilityLayer(): UtilityLayerRenderer;
48067
+ /**
48068
+ * Creates an utility layer, and set it as a default utility layer (Depth map of the previous scene is not cleared before drawing on top of it)
48069
+ * @param scene associated scene
48070
+ * @internal
48071
+ */
48072
+ static _CreateDefaultKeepUtilityLayerFromScene(scene: Scene): UtilityLayerRenderer;
48044
48073
  /**
48045
48074
  * The scene that is rendered on top of the original scene
48046
48075
  */
@@ -55782,6 +55811,11 @@ declare module "../../Meshes/transformNode" {
55782
55811
  * @returns the current mesh
55783
55812
  */
55784
55813
  applyAngularImpulse(angularImpulse: Vector3): TransformNode;
55814
+ /** Apply a physic torque to the mesh
55815
+ * @param torque defines the torque to apply
55816
+ * @returns the current mesh
55817
+ */
55818
+ applyTorque(torque: Vector3): TransformNode;
55785
55819
  /** @internal */
55786
55820
  _disposePhysicsObserver: Nullable<Observer<Node>>;
55787
55821
  }
@@ -72503,6 +72537,8 @@ type LinkProps = ImmutablePrimitiveProps<string> & {
72503
72537
  * Defines whether to open the link in current tab or new tab. Default is new
72504
72538
  */
72505
72539
  target?: "current" | "new";
72540
+ /**Force link size */
72541
+ size?: "small" | "medium";
72506
72542
  };
72507
72543
  declare const Link: react.ForwardRefExoticComponent<BasePrimitiveProps & {
72508
72544
  value: string;
@@ -72520,6 +72556,8 @@ declare const Link: react.ForwardRefExoticComponent<BasePrimitiveProps & {
72520
72556
  * Defines whether to open the link in current tab or new tab. Default is new
72521
72557
  */
72522
72558
  target?: "current" | "new";
72559
+ /**Force link size */
72560
+ size?: "small" | "medium";
72523
72561
  } & {
72524
72562
  children?: react.ReactNode | undefined;
72525
72563
  } & react.RefAttributes<HTMLAnchorElement>>;
@@ -72597,10 +72635,17 @@ type SpinButtonProps = PrimitiveProps<number> & {
72597
72635
  unit?: string;
72598
72636
  forceInt?: boolean;
72599
72637
  validator?: (value: number) => boolean;
72638
+ /** Optional className for the input element */
72639
+ inputClassName?: string;
72600
72640
  };
72601
72641
  declare const SpinButton: FunctionComponent<SpinButtonProps>;
72602
72642
 
72603
- type SwitchProps = PrimitiveProps<boolean>;
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
+ };
72604
72649
  /**
72605
72650
  * This is a primitive fluent boolean switch component whose only knowledge is the shared styling across all tools
72606
72651
  * @param props
@@ -72619,8 +72664,10 @@ type SyncedSliderProps = PrimitiveProps<number> & {
72619
72664
  unit?: string;
72620
72665
  /** When true, onChange is only called when the user releases the slider, not during drag */
72621
72666
  notifyOnlyOnRelease?: boolean;
72622
- /** When true, slider grows to fill space and SpinButton is fixed at 70px */
72667
+ /** When true, slider grows to fill space and SpinButton is fixed at 65px */
72623
72668
  compact?: boolean;
72669
+ /** When true, slider grows to fill all available space (no maxWidth constraint) */
72670
+ growSlider?: boolean;
72624
72671
  };
72625
72672
  /**
72626
72673
  * Component which synchronizes a slider and an input field, allowing the user to change the value using either control
package/lib/index.js CHANGED
@@ -1,12 +1,12 @@
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-CxcZXjGK.js';
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';
2
2
  import 'react/jsx-runtime';
3
3
  import 'react';
4
+ import '@fluentui/react-components';
5
+ import '@fluentui/react-icons';
4
6
  import '@babylonjs/core/Maths/math.color.js';
5
7
  import '@babylonjs/core/Maths/math.vector.js';
6
8
  import '@babylonjs/core/Misc/observable.js';
7
9
  import '@babylonjs/core/Misc/typeStore.js';
8
- import '@fluentui/react-components';
9
- import '@fluentui/react-icons';
10
10
  import '@fluentui/react-motion-components-preview';
11
11
  import 'usehooks-ts';
12
12
  import '@babylonjs/core/Misc/asyncLock.js';
@@ -45,6 +45,7 @@ import '@babylonjs/core/Lights/light.js';
45
45
  import '@babylonjs/core/Meshes/abstractMesh.js';
46
46
  import '@babylonjs/core/node.js';
47
47
  import '@babylonjs/core/Animations/animationGroup.js';
48
+ import '@babylonjs/core/Animations/animation.js';
48
49
  import '@babylonjs/core/Animations/animationPropertiesOverride.js';
49
50
  import '@babylonjs/addons/atmosphere/atmosphere.js';
50
51
  import '@babylonjs/core/Cameras/arcRotateCamera.js';
@@ -87,6 +88,9 @@ import '@babylonjs/core/Meshes/instancedMesh.js';
87
88
  import '@babylonjs/core/Rendering/renderingManager.js';
88
89
  import '@babylonjs/core/Rendering/edgesRenderer.js';
89
90
  import '@babylonjs/core/Rendering/outlineRenderer.js';
91
+ import '@babylonjs/core/Particles/gpuParticleSystem.js';
92
+ import '@babylonjs/core/Particles/Node/nodeParticleSystemSet.helper.js';
93
+ import '@babylonjs/core/Particles/particleHelper.js';
90
94
  import '@babylonjs/core/Particles/EmitterTypes/boxParticleEmitter.js';
91
95
  import '@babylonjs/core/Particles/EmitterTypes/coneParticleEmitter.js';
92
96
  import '@babylonjs/core/Particles/EmitterTypes/cylinderParticleEmitter.js';
@@ -94,11 +98,9 @@ import '@babylonjs/core/Particles/EmitterTypes/hemisphericParticleEmitter.js';
94
98
  import '@babylonjs/core/Particles/EmitterTypes/meshParticleEmitter.js';
95
99
  import '@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter.js';
96
100
  import '@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter.js';
97
- import '@babylonjs/core/Particles/Node/nodeParticleSystemSet.helper.js';
98
- import '@babylonjs/core/Particles/gpuParticleSystem.js';
99
- import '@babylonjs/core/Particles/particleHelper.js';
100
101
  import '@babylonjs/core/Particles/attractor.js';
101
102
  import '@babylonjs/core/Meshes/Builders/sphereBuilder.js';
103
+ import '@babylonjs/core/Particles/Node/Enums/nodeParticleBlockConnectionPointTypes.js';
102
104
  import '@babylonjs/core/Meshes/transformNode.js';
103
105
  import '@babylonjs/core/Physics/v2/IPhysicsEnginePlugin.js';
104
106
  import '@babylonjs/core/Physics/v2/physicsEngineComponent.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-CxcZXjGK.js';
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';
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,6 +69,7 @@ import '@babylonjs/core/Lights/light.js';
69
69
  import '@babylonjs/core/Meshes/abstractMesh.js';
70
70
  import '@babylonjs/core/node.js';
71
71
  import '@babylonjs/core/Animations/animationGroup.js';
72
+ import '@babylonjs/core/Animations/animation.js';
72
73
  import '@babylonjs/core/Animations/animationPropertiesOverride.js';
73
74
  import '@babylonjs/addons/atmosphere/atmosphere.js';
74
75
  import '@babylonjs/core/Cameras/targetCamera.js';
@@ -102,6 +103,8 @@ import '@babylonjs/core/Meshes/instancedMesh.js';
102
103
  import '@babylonjs/core/Rendering/renderingManager.js';
103
104
  import '@babylonjs/core/Rendering/edgesRenderer.js';
104
105
  import '@babylonjs/core/Rendering/outlineRenderer.js';
106
+ import '@babylonjs/core/Particles/Node/nodeParticleSystemSet.helper.js';
107
+ import '@babylonjs/core/Particles/particleHelper.js';
105
108
  import '@babylonjs/core/Particles/EmitterTypes/boxParticleEmitter.js';
106
109
  import '@babylonjs/core/Particles/EmitterTypes/coneParticleEmitter.js';
107
110
  import '@babylonjs/core/Particles/EmitterTypes/cylinderParticleEmitter.js';
@@ -109,10 +112,9 @@ import '@babylonjs/core/Particles/EmitterTypes/hemisphericParticleEmitter.js';
109
112
  import '@babylonjs/core/Particles/EmitterTypes/meshParticleEmitter.js';
110
113
  import '@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter.js';
111
114
  import '@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter.js';
112
- import '@babylonjs/core/Particles/Node/nodeParticleSystemSet.helper.js';
113
- import '@babylonjs/core/Particles/particleHelper.js';
114
115
  import '@babylonjs/core/Particles/attractor.js';
115
116
  import '@babylonjs/core/Meshes/Builders/sphereBuilder.js';
117
+ import '@babylonjs/core/Particles/Node/Enums/nodeParticleBlockConnectionPointTypes.js';
116
118
  import '@babylonjs/core/Meshes/transformNode.js';
117
119
  import '@babylonjs/core/Physics/v2/IPhysicsEnginePlugin.js';
118
120
  import '@babylonjs/core/Physics/v2/physicsEngineComponent.js';
@@ -688,4 +690,4 @@ var quickCreateToolsService = {
688
690
  };
689
691
 
690
692
  export { CreateToolsServiceDefinition, quickCreateToolsService as default };
691
- //# sourceMappingURL=quickCreateToolsService-CAupjSUl.js.map
693
+ //# sourceMappingURL=quickCreateToolsService-CBcmm2Zr.js.map