@babylonjs/inspector 8.45.1-preview → 8.45.2-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/{captureService-BljpAUY0.js → captureService-BDZ64ZKE.js} +3 -5
- package/lib/{captureService-BljpAUY0.js.map → captureService-BDZ64ZKE.js.map} +1 -1
- package/lib/{exportService-Ds9cCJKY.js → exportService-CnPFMXUA.js} +3 -5
- package/lib/{exportService-Ds9cCJKY.js.map → exportService-CnPFMXUA.js.map} +1 -1
- package/lib/{extensionsListService-ClfCMwL9.js → extensionsListService-CN7-7Dna.js} +3 -5
- package/lib/{extensionsListService-ClfCMwL9.js.map → extensionsListService-CN7-7Dna.js.map} +1 -1
- package/lib/{importService-DjRpoPdx.js → importService-e9XEtGfl.js} +3 -5
- package/lib/{importService-DjRpoPdx.js.map → importService-e9XEtGfl.js.map} +1 -1
- package/lib/{index-DShP7wwE.js → index-D450kD0o.js} +280 -149
- package/lib/index-D450kD0o.js.map +1 -0
- package/lib/index.d.ts +145 -4
- package/lib/index.js +2 -4
- package/lib/index.js.map +1 -1
- package/lib/{quickCreateToolsService-B1GLLyqj.js → quickCreateToolsService-gqXZXpNH.js} +3 -4
- package/lib/{quickCreateToolsService-B1GLLyqj.js.map → quickCreateToolsService-gqXZXpNH.js.map} +1 -1
- package/package.json +1 -1
- package/lib/index-DShP7wwE.js.map +0 -1
package/lib/index.d.ts
CHANGED
|
@@ -42761,6 +42761,109 @@ declare class WebXRControllerMovement extends WebXRAbstractFeature {
|
|
|
42761
42761
|
private _detachController;
|
|
42762
42762
|
}
|
|
42763
42763
|
|
|
42764
|
+
/**
|
|
42765
|
+
* The interface for the physics aggregate parameters
|
|
42766
|
+
*/
|
|
42767
|
+
interface PhysicsAggregateParameters {
|
|
42768
|
+
/**
|
|
42769
|
+
* The mass of the physics aggregate
|
|
42770
|
+
*/
|
|
42771
|
+
mass: number;
|
|
42772
|
+
/**
|
|
42773
|
+
* The friction of the physics aggregate
|
|
42774
|
+
*/
|
|
42775
|
+
friction?: number;
|
|
42776
|
+
/**
|
|
42777
|
+
* The coefficient of restitution of the physics aggregate
|
|
42778
|
+
*/
|
|
42779
|
+
restitution?: number;
|
|
42780
|
+
/**
|
|
42781
|
+
* Radius for sphere, cylinder and capsule
|
|
42782
|
+
*/
|
|
42783
|
+
radius?: number;
|
|
42784
|
+
/**
|
|
42785
|
+
* Starting point for cylinder/capsule
|
|
42786
|
+
*/
|
|
42787
|
+
pointA?: Vector3;
|
|
42788
|
+
/**
|
|
42789
|
+
* Ending point for cylinder/capsule
|
|
42790
|
+
*/
|
|
42791
|
+
pointB?: Vector3;
|
|
42792
|
+
/**
|
|
42793
|
+
* Extents for box
|
|
42794
|
+
*/
|
|
42795
|
+
extents?: Vector3;
|
|
42796
|
+
/**
|
|
42797
|
+
* Orientation for box
|
|
42798
|
+
*/
|
|
42799
|
+
rotation?: Quaternion;
|
|
42800
|
+
/**
|
|
42801
|
+
* mesh local center
|
|
42802
|
+
*/
|
|
42803
|
+
center?: Vector3;
|
|
42804
|
+
/**
|
|
42805
|
+
* mesh object. Used for mesh and convex hull aggregates.
|
|
42806
|
+
*/
|
|
42807
|
+
mesh?: Mesh;
|
|
42808
|
+
/**
|
|
42809
|
+
* Physics engine will try to make this body sleeping and not active
|
|
42810
|
+
*/
|
|
42811
|
+
startAsleep?: boolean;
|
|
42812
|
+
/**
|
|
42813
|
+
* If true, mark the created shape as a trigger shape
|
|
42814
|
+
*/
|
|
42815
|
+
isTriggerShape?: boolean;
|
|
42816
|
+
}
|
|
42817
|
+
/**
|
|
42818
|
+
* Helper class to create and interact with a PhysicsAggregate.
|
|
42819
|
+
* This is a transition object that works like Physics Plugin V1 Impostors.
|
|
42820
|
+
* This helper instantiates all mandatory physics objects to get a body/shape and material.
|
|
42821
|
+
* It's less efficient than handling body and shapes independently but for prototyping or
|
|
42822
|
+
* a small numbers of physics objects, it's good enough.
|
|
42823
|
+
*/
|
|
42824
|
+
declare class PhysicsAggregate {
|
|
42825
|
+
/**
|
|
42826
|
+
* The physics-enabled object used as the physics aggregate
|
|
42827
|
+
*/
|
|
42828
|
+
transformNode: TransformNode;
|
|
42829
|
+
/**
|
|
42830
|
+
* The type of the physics aggregate
|
|
42831
|
+
*/
|
|
42832
|
+
type: PhysicsShapeType | PhysicsShape;
|
|
42833
|
+
private _options;
|
|
42834
|
+
private _scene?;
|
|
42835
|
+
/**
|
|
42836
|
+
* The body that is associated with this aggregate
|
|
42837
|
+
*/
|
|
42838
|
+
body: PhysicsBody;
|
|
42839
|
+
/**
|
|
42840
|
+
* The shape that is associated with this aggregate
|
|
42841
|
+
*/
|
|
42842
|
+
shape: PhysicsShape;
|
|
42843
|
+
/**
|
|
42844
|
+
* The material that is associated with this aggregate
|
|
42845
|
+
*/
|
|
42846
|
+
material: PhysicsMaterial;
|
|
42847
|
+
private _disposeShapeWhenDisposed;
|
|
42848
|
+
private _nodeDisposeObserver;
|
|
42849
|
+
constructor(
|
|
42850
|
+
/**
|
|
42851
|
+
* The physics-enabled object used as the physics aggregate
|
|
42852
|
+
*/
|
|
42853
|
+
transformNode: TransformNode,
|
|
42854
|
+
/**
|
|
42855
|
+
* The type of the physics aggregate
|
|
42856
|
+
*/
|
|
42857
|
+
type: PhysicsShapeType | PhysicsShape, _options?: PhysicsAggregateParameters, _scene?: Scene | undefined);
|
|
42858
|
+
private _getObjectBoundingBox;
|
|
42859
|
+
private _hasVertices;
|
|
42860
|
+
private _addSizeOptions;
|
|
42861
|
+
/**
|
|
42862
|
+
* Releases the body, shape and material
|
|
42863
|
+
*/
|
|
42864
|
+
dispose(): void;
|
|
42865
|
+
}
|
|
42866
|
+
|
|
42764
42867
|
/**
|
|
42765
42868
|
* Options for the controller physics feature
|
|
42766
42869
|
*/
|
|
@@ -42836,13 +42939,19 @@ declare class IWebXRControllerPhysicsOptions {
|
|
|
42836
42939
|
declare class WebXRControllerPhysics extends WebXRAbstractFeature {
|
|
42837
42940
|
private readonly _options;
|
|
42838
42941
|
private _attachController;
|
|
42942
|
+
private _attachControllerV1;
|
|
42943
|
+
private _attachControllerV2;
|
|
42944
|
+
private _mapImpostorTypeToShapeType;
|
|
42839
42945
|
private _createPhysicsImpostor;
|
|
42946
|
+
private _createPhysicsAggregate;
|
|
42840
42947
|
private _controllers;
|
|
42841
42948
|
private _debugMode;
|
|
42842
42949
|
private _delta;
|
|
42843
42950
|
private _headsetImpostor?;
|
|
42844
42951
|
private _headsetMesh?;
|
|
42952
|
+
private _headsetAggregateV2?;
|
|
42845
42953
|
private _lastTimestamp;
|
|
42954
|
+
private _physicsVersion;
|
|
42846
42955
|
private _tmpQuaternion;
|
|
42847
42956
|
private _tmpVector;
|
|
42848
42957
|
/**
|
|
@@ -42854,7 +42963,7 @@ declare class WebXRControllerPhysics extends WebXRAbstractFeature {
|
|
|
42854
42963
|
* This is an integer representing the implementation version.
|
|
42855
42964
|
* This number does not correspond to the webxr specs version
|
|
42856
42965
|
*/
|
|
42857
|
-
static readonly Version =
|
|
42966
|
+
static readonly Version = 2;
|
|
42858
42967
|
/**
|
|
42859
42968
|
* Construct a new Controller Physics Feature
|
|
42860
42969
|
* @param _xrSessionManager the corresponding xr session manager
|
|
@@ -42897,6 +43006,23 @@ declare class WebXRControllerPhysics extends WebXRAbstractFeature {
|
|
|
42897
43006
|
* @returns the impostor or null
|
|
42898
43007
|
*/
|
|
42899
43008
|
getImpostorForController(controller: WebXRInputSource | string): Nullable<PhysicsImpostor>;
|
|
43009
|
+
/**
|
|
43010
|
+
* Get the physics aggregate for a controller (v2 only)
|
|
43011
|
+
* @param controller the controller or the controller id
|
|
43012
|
+
* @returns the aggregate or null
|
|
43013
|
+
*/
|
|
43014
|
+
getPhysicsAggregateForController(controller: WebXRInputSource | string): Nullable<PhysicsAggregate>;
|
|
43015
|
+
/**
|
|
43016
|
+
* Get the physics body for a controller (v2 only)
|
|
43017
|
+
* @param controller the controller or the controller id
|
|
43018
|
+
* @returns the physics body or null
|
|
43019
|
+
*/
|
|
43020
|
+
getPhysicsBodyForController(controller: WebXRInputSource | string): Nullable<PhysicsBody>;
|
|
43021
|
+
/**
|
|
43022
|
+
* Get the headset physics aggregate (v2 only)
|
|
43023
|
+
* @returns the physics aggregate or null
|
|
43024
|
+
*/
|
|
43025
|
+
getHeadsetPhysicsAggregate(): Nullable<PhysicsAggregate>;
|
|
42900
43026
|
/**
|
|
42901
43027
|
* Update the physics properties provided in the constructor
|
|
42902
43028
|
* @param newProperties the new properties object
|
|
@@ -42916,6 +43042,10 @@ declare class WebXRControllerPhysics extends WebXRAbstractFeature {
|
|
|
42916
43042
|
restitution?: number;
|
|
42917
43043
|
}): void;
|
|
42918
43044
|
protected _onXRFrame(_xrFrame: any): void;
|
|
43045
|
+
private _onXRFrameV1;
|
|
43046
|
+
private _onXRFrameV2;
|
|
43047
|
+
private _enableHeadsetPhysicsV1;
|
|
43048
|
+
private _enableHeadsetPhysicsV2;
|
|
42919
43049
|
private _detachController;
|
|
42920
43050
|
}
|
|
42921
43051
|
|
|
@@ -48194,6 +48324,10 @@ declare module "../../Engines/abstractEngine" {
|
|
|
48194
48324
|
}
|
|
48195
48325
|
}
|
|
48196
48326
|
|
|
48327
|
+
/**
|
|
48328
|
+
* Note that users may not import this file, so each time we want to call one of them, we must check if it exists.
|
|
48329
|
+
* @internal
|
|
48330
|
+
*/
|
|
48197
48331
|
declare module "../../Engines/abstractEngine" {
|
|
48198
48332
|
interface AbstractEngine {
|
|
48199
48333
|
/** @internal */
|
|
@@ -52422,10 +52556,12 @@ declare class PBRSubSurfaceConfiguration extends MaterialPluginBase {
|
|
|
52422
52556
|
* is added to the diffuse part of the material.
|
|
52423
52557
|
*/
|
|
52424
52558
|
translucencyIntensity: number;
|
|
52559
|
+
private _useAlbedoToTintRefraction;
|
|
52425
52560
|
/**
|
|
52426
52561
|
* When enabled, transparent surfaces will be tinted with the albedo colour (independent of thickness)
|
|
52427
52562
|
*/
|
|
52428
52563
|
useAlbedoToTintRefraction: boolean;
|
|
52564
|
+
private _useAlbedoToTintTranslucency;
|
|
52429
52565
|
/**
|
|
52430
52566
|
* When enabled, translucent surfaces will be tinted with the albedo colour (independent of thickness)
|
|
52431
52567
|
*/
|
|
@@ -53084,8 +53220,9 @@ declare abstract class PBRBaseMaterial extends PBRBaseMaterialBase {
|
|
|
53084
53220
|
private _globalAmbientColor;
|
|
53085
53221
|
/**
|
|
53086
53222
|
* If set to true, no lighting calculations will be applied.
|
|
53223
|
+
* @internal
|
|
53087
53224
|
*/
|
|
53088
|
-
|
|
53225
|
+
_unlit: boolean;
|
|
53089
53226
|
/**
|
|
53090
53227
|
* If sets to true, the decal map will be applied after the detail map. Else, it is applied before (default: false)
|
|
53091
53228
|
*/
|
|
@@ -72380,6 +72517,7 @@ declare const Textarea: FunctionComponent<TextareaProps>;
|
|
|
72380
72517
|
|
|
72381
72518
|
type TextInputProps = PrimitiveProps<string> & {
|
|
72382
72519
|
validator?: (value: string) => boolean;
|
|
72520
|
+
validateOnlyOnBlur?: boolean;
|
|
72383
72521
|
};
|
|
72384
72522
|
declare const TextInput: FunctionComponent<TextInputProps>;
|
|
72385
72523
|
|
|
@@ -72541,12 +72679,15 @@ type NumberInputPropertyLineProps = SpinButtonProps & PropertyLineProps<number>;
|
|
|
72541
72679
|
*/
|
|
72542
72680
|
declare const NumberInputPropertyLine: FunctionComponent<NumberInputPropertyLineProps>;
|
|
72543
72681
|
|
|
72682
|
+
type HexPropertyLineProps = NumberInputPropertyLineProps & {
|
|
72683
|
+
numBits?: 32 | 24 | 16 | 8;
|
|
72684
|
+
};
|
|
72544
72685
|
/**
|
|
72545
72686
|
* Takes a number representing a Hex value and converts it to a hex string then wraps the TextInput in a PropertyLine
|
|
72546
72687
|
* @param props - PropertyLineProps
|
|
72547
72688
|
* @returns property-line wrapped textbox that converts to/from hex number representation
|
|
72548
72689
|
*/
|
|
72549
|
-
declare const HexPropertyLine: FunctionComponent<
|
|
72690
|
+
declare const HexPropertyLine: FunctionComponent<HexPropertyLineProps>;
|
|
72550
72691
|
|
|
72551
72692
|
/**
|
|
72552
72693
|
* Wraps a link in a property line
|
|
@@ -72648,4 +72789,4 @@ declare const Vector3PropertyLine: FunctionComponent<TensorPropertyLineProps<Vec
|
|
|
72648
72789
|
declare const Vector4PropertyLine: FunctionComponent<TensorPropertyLineProps<Vector4>>;
|
|
72649
72790
|
|
|
72650
72791
|
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, 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 };
|
|
72651
|
-
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, 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, SceneExplorerCommand, SceneExplorerCommandProvider, SceneExplorerSection, SectionsImperativeRef, ServiceDefinition, ServiceFactory, SidePaneDefinition, SpinButtonProps, SwitchProps, SyncedSliderProps, TensorPropertyLineProps, TextInputProps, TextareaProps, ToolbarItemDefinition };
|
|
72792
|
+
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, 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, 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-
|
|
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';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@babylonjs/core/Maths/math.color.js';
|
|
@@ -65,15 +65,13 @@ import '@babylonjs/core/Lights/Shadows/shadowGeneratorSceneComponent.js';
|
|
|
65
65
|
import '@babylonjs/core/Materials/material.js';
|
|
66
66
|
import '@babylonjs/core/Materials/multiMaterial.js';
|
|
67
67
|
import '@babylonjs/core/Materials/PBR/pbrBaseMaterial.js';
|
|
68
|
-
import '@babylonjs/core/Materials/PBR/pbrBaseSimpleMaterial.js';
|
|
69
|
-
import '@babylonjs/core/Materials/PBR/pbrMaterial.js';
|
|
70
68
|
import '@babylonjs/core/Materials/PBR/openpbrMaterial.js';
|
|
71
69
|
import '@babylonjs/materials/sky/skyMaterial.js';
|
|
72
70
|
import '@babylonjs/core/Engines/constants.js';
|
|
73
71
|
import '@babylonjs/core/Engines/engine.js';
|
|
74
72
|
import '@babylonjs/core/Particles/particleSystem.js';
|
|
75
|
-
import '@babylonjs/core/Misc/fileTools.js';
|
|
76
73
|
import '@babylonjs/core/Materials/Textures/cubeTexture.js';
|
|
74
|
+
import '@babylonjs/core/Misc/fileTools.js';
|
|
77
75
|
import '@babylonjs/core/Meshes/mesh.js';
|
|
78
76
|
import '@babylonjs/core/Debug/skeletonViewer.js';
|
|
79
77
|
import '@babylonjs/core/Meshes/buffer.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-
|
|
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';
|
|
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';
|
|
@@ -74,13 +74,12 @@ import '@babylonjs/core/Lights/Shadows/shadowGeneratorSceneComponent.js';
|
|
|
74
74
|
import '@babylonjs/core/Materials/material.js';
|
|
75
75
|
import '@babylonjs/core/Materials/multiMaterial.js';
|
|
76
76
|
import '@babylonjs/core/Materials/PBR/pbrBaseMaterial.js';
|
|
77
|
-
import '@babylonjs/core/Materials/PBR/pbrBaseSimpleMaterial.js';
|
|
78
77
|
import '@babylonjs/core/Materials/PBR/openpbrMaterial.js';
|
|
79
78
|
import '@babylonjs/materials/sky/skyMaterial.js';
|
|
80
79
|
import '@babylonjs/core/Engines/constants.js';
|
|
81
80
|
import '@babylonjs/core/Engines/engine.js';
|
|
82
|
-
import '@babylonjs/core/Misc/fileTools.js';
|
|
83
81
|
import '@babylonjs/core/Materials/Textures/cubeTexture.js';
|
|
82
|
+
import '@babylonjs/core/Misc/fileTools.js';
|
|
84
83
|
import '@babylonjs/core/Meshes/mesh.js';
|
|
85
84
|
import '@babylonjs/core/Debug/skeletonViewer.js';
|
|
86
85
|
import '@babylonjs/core/Meshes/buffer.js';
|
|
@@ -543,4 +542,4 @@ var quickCreateToolsService = {
|
|
|
543
542
|
};
|
|
544
543
|
|
|
545
544
|
export { CreateToolsServiceDefinition, quickCreateToolsService as default };
|
|
546
|
-
//# sourceMappingURL=quickCreateToolsService-
|
|
545
|
+
//# sourceMappingURL=quickCreateToolsService-gqXZXpNH.js.map
|