@babylonjs/inspector 8.54.1 → 8.54.3
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/{extensionsListService-ClgMe11V.js → extensionsListService--XzVqzeM.js} +3 -2
- package/lib/{extensionsListService-ClgMe11V.js.map → extensionsListService--XzVqzeM.js.map} +1 -1
- package/lib/{index-DBHYgAua.js → index-CIc0CbG8.js} +261 -227
- package/lib/index-CIc0CbG8.js.map +1 -0
- package/lib/index.d.ts +35 -5
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/{quickCreateToolsService-DnszM-9c.js → quickCreateToolsService-D-cyDKNQ.js} +3 -2
- package/lib/{quickCreateToolsService-DnszM-9c.js.map → quickCreateToolsService-D-cyDKNQ.js.map} +1 -1
- package/lib/{reflectorService-Dis4AcAP.js → reflectorService-DNf_o1rS.js} +3 -2
- package/lib/{reflectorService-Dis4AcAP.js.map → reflectorService-DNf_o1rS.js.map} +1 -1
- package/package.json +1 -1
- package/lib/index-DBHYgAua.js.map +0 -1
package/lib/index.d.ts
CHANGED
|
@@ -24392,11 +24392,11 @@ declare abstract class ThinWebGPUEngine extends AbstractEngine {
|
|
|
24392
24392
|
/** @internal */
|
|
24393
24393
|
_showGPUDebugMarkersLog: boolean;
|
|
24394
24394
|
/** @internal */
|
|
24395
|
-
|
|
24395
|
+
_debugMarkersEncoderGroups: string[];
|
|
24396
24396
|
/** @internal */
|
|
24397
|
-
|
|
24397
|
+
_debugMarkersPassGroups: string[];
|
|
24398
24398
|
/** @internal */
|
|
24399
|
-
|
|
24399
|
+
_debugMarkersPendingEncoderPops: number;
|
|
24400
24400
|
/**
|
|
24401
24401
|
* Gets the GPU time spent in the main render pass for the last frame rendered (in nanoseconds).
|
|
24402
24402
|
* You have to enable the "timestamp-query" extension in the engine constructor options and set engine.enableGPUTimingMeasurements = true.
|
|
@@ -24421,7 +24421,9 @@ declare abstract class ThinWebGPUEngine extends AbstractEngine {
|
|
|
24421
24421
|
* @internal
|
|
24422
24422
|
*/
|
|
24423
24423
|
_generateMipmaps(texture: InternalTexture, commandEncoder?: GPUCommandEncoder): void;
|
|
24424
|
-
protected
|
|
24424
|
+
protected _debugPopBeforeEndOfEncoder(): void;
|
|
24425
|
+
protected _debugPushAfterStartOfEncoder(): void;
|
|
24426
|
+
protected _debugPendingPop(currentRenderPass: GPURenderPassEncoder): void;
|
|
24425
24427
|
}
|
|
24426
24428
|
|
|
24427
24429
|
/** @internal */
|
|
@@ -26566,8 +26568,9 @@ declare class WebGPUEngine extends ThinWebGPUEngine {
|
|
|
26566
26568
|
extractDriverInfo(): string;
|
|
26567
26569
|
/**
|
|
26568
26570
|
* Force a WebGPU flush (ie. a flush of all waiting commands)
|
|
26571
|
+
* @internal @param _fromEndFrame defines whether the flush is triggered from endFrame or not (default: false)
|
|
26569
26572
|
*/
|
|
26570
|
-
flushFramebuffer(): void;
|
|
26573
|
+
flushFramebuffer(_fromEndFrame?: boolean): void;
|
|
26571
26574
|
/** @internal */
|
|
26572
26575
|
_currentFrameBufferIsDefaultFrameBuffer(): boolean;
|
|
26573
26576
|
/** @internal */
|
|
@@ -51663,6 +51666,17 @@ declare class NodeRenderGraph {
|
|
|
51663
51666
|
* @returns an array of InputBlocks
|
|
51664
51667
|
*/
|
|
51665
51668
|
getInputBlocks(): NodeRenderGraphInputBlock[];
|
|
51669
|
+
/**
|
|
51670
|
+
* Replaces a camera in all camera input blocks of this node render graph.
|
|
51671
|
+
* If the current camera is found in any input block, it is replaced by the new camera,
|
|
51672
|
+
* optionally updating the scene's pointer camera and rebuilding the graph.
|
|
51673
|
+
* @param currentCamera The camera to replace.
|
|
51674
|
+
* @param newCamera The new camera to assign to the matching input blocks.
|
|
51675
|
+
* @param updateCameraToUseForPointers If true (default), updates `scene.cameraToUseForPointers` to the new camera when a replacement occurs.
|
|
51676
|
+
* @param rebuildGraph If true (default), rebuilds the graph asynchronously after the replacement.
|
|
51677
|
+
* @returns A promise that resolves to true if at least one input block was updated, false otherwise.
|
|
51678
|
+
*/
|
|
51679
|
+
replaceCameraAsync(currentCamera: Nullable<Camera>, newCamera: Camera, updateCameraToUseForPointers?: boolean, rebuildGraph?: boolean): Promise<boolean>;
|
|
51666
51680
|
/**
|
|
51667
51681
|
* Launch the node render graph editor
|
|
51668
51682
|
* @param config Define the configuration of the editor
|
|
@@ -70412,6 +70426,7 @@ declare class Scene implements IAnimatable, IClipPlanesHolder, IAssetContainer {
|
|
|
70412
70426
|
/** @internal */
|
|
70413
70427
|
_pendingData: any[];
|
|
70414
70428
|
private _isDisposed;
|
|
70429
|
+
private _isReadyChecks;
|
|
70415
70430
|
/**
|
|
70416
70431
|
* Gets or sets a boolean indicating that all submeshes of active meshes must be rendered
|
|
70417
70432
|
* Use this boolean to avoid computing frustum clipping on submeshes (This could help when you are CPU bound)
|
|
@@ -70847,6 +70862,21 @@ declare class Scene implements IAnimatable, IClipPlanesHolder, IAssetContainer {
|
|
|
70847
70862
|
* Returns a boolean indicating if the scene is still loading data
|
|
70848
70863
|
*/
|
|
70849
70864
|
get isLoading(): boolean;
|
|
70865
|
+
/**
|
|
70866
|
+
* Registers an object whose {@link isReady} method will be checked during {@link Scene.isReady}.
|
|
70867
|
+
* Call {@link removeIsReadyCheck} to remove the object.
|
|
70868
|
+
* @param isReadyCheck defines the object to add.
|
|
70869
|
+
*/
|
|
70870
|
+
addIsReadyCheck(isReadyCheck: {
|
|
70871
|
+
isReady(): boolean;
|
|
70872
|
+
}): void;
|
|
70873
|
+
/**
|
|
70874
|
+
* Removes an object previously registered with {@link addIsReadyCheck}.
|
|
70875
|
+
* @param isReadyCheck defines the object to remove.
|
|
70876
|
+
*/
|
|
70877
|
+
removeIsReadyCheck(isReadyCheck: {
|
|
70878
|
+
isReady(): boolean;
|
|
70879
|
+
}): void;
|
|
70850
70880
|
/**
|
|
70851
70881
|
* Registers a function to be executed when the scene is ready
|
|
70852
70882
|
* @param func - the function to be executed
|
package/lib/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as Accordion, f as AccordionSection, k as AccordionSectionItem, l as AttachDebugLayer, m as BooleanBadgePropertyLine, n as BoundProperty, o as BuiltInsExtensionFeed, B as Button, g as ButtonLine, p as Checkbox, C as CheckboxPropertyLine, q as ChildWindow, r as Collapse, s as Color3GradientComponent, t as Color3GradientList, v as Color3PropertyLine, w as Color4GradientComponent, x as Color4GradientList, y as Color4PropertyLine, z as ColorPickerPopup, D as ColorStepGradientComponent, E as ComboBox, F as ComboBoxPropertyLine, G as ConstructorFactory, H as ConvertOptions, I as DebugServiceIdentity, J as DetachDebugLayer, K as DraggableLine, O as Dropdown, Q as EntitySelector, R as ErrorBoundary, U as ExtensibleAccordion, W as FactorGradientComponent, X as FactorGradientList, Y as FileUploadLine, Z as GetPropertyDescriptor, _ as GizmoServiceIdentity, $ as HexPropertyLine, a0 as InfoLabel, a1 as InputHexField, a2 as InputHsvField, a3 as Inspector, a4 as InterceptFunction, a5 as InterceptProperty, a6 as IsPropertyReadonly, a7 as LineContainer, j as Link, a8 as LinkPropertyLine, L as LinkToEntity, a9 as LinkToEntityPropertyLine, aa as List, ab as MakeDialogTeachingMoment, ac as MakeLazyComponent, ad as MakePopoverTeachingMoment, ae as MakePropertyHook, af as MakeTeachingMoment, ag as MaterialSelector, M as MessageBar, ah as NodeSelector, ai as NumberDropdown, aj as NumberDropdownPropertyLine, N as NumberInputPropertyLine, ak as ObservableCollection, al as Pane, am as PlaceholderPropertyLine, P as Popover, an as PositionedPopover, ao as PropertiesServiceIdentity, ap as Property, aq as PropertyContext, ar as PropertyLine, as as QuaternionPropertyLine, at as RotationVectorPropertyLine, c as SceneContextIdentity, au as SceneExplorerServiceIdentity, av as SearchBar, aw as SearchBox, ax as SelectionServiceDefinition, d as SelectionServiceIdentity, ay as SettingsServiceIdentity, az as SettingsStore, aA as SettingsStoreIdentity, b as ShellServiceIdentity, aB as ShowInspector, aC as SidePaneContainer, aD as SkeletonSelector, aE as Slider, aF as SpinButton, S as SpinButtonPropertyLine, aG as StatsServiceIdentity, aH as StringDropdown, aI as StringDropdownPropertyLine, aJ as StringifiedPropertyLine, aK as Switch, aL as SwitchPropertyLine, aM as SyncedSliderInput, aN as SyncedSliderPropertyLine, aO as TeachingMoment, aP as TextAreaPropertyLine, aQ as TextInput, T as TextInputPropertyLine, aR as TextPropertyLine, aS as Textarea, aT as TextureSelector, aU as TextureUpload, aV as Theme, aW as ThemeServiceIdentity, aX as ToastProvider, aY as ToggleButton, h as ToolsServiceIdentity, aZ as Tooltip, a_ as UploadButton, a$ as Vector2PropertyLine, V as Vector3PropertyLine, b0 as Vector4PropertyLine, b1 as WatcherServiceIdentity, b2 as useAngleConverters, b3 as useAsyncResource, b4 as useColor3Property, b5 as useColor4Property, b6 as useEventListener, b7 as useEventfulState, b8 as useInterceptObservable, b9 as useKeyListener, ba as useKeyState, bb as useObservableCollection, e as useObservableState, bc as useOrderedObservableCollection, bd as usePollingObservable, a as useProperty, be as usePropertyChangedNotifier, bf as useQuaternionProperty, bg as useResource, bh as useSetting, bi as useTheme, bj as useThemeMode, u as useToast, bk as useVector3Property } from './index-
|
|
1
|
+
export { A as Accordion, f as AccordionSection, k as AccordionSectionItem, l as AttachDebugLayer, m as BooleanBadgePropertyLine, n as BoundProperty, o as BuiltInsExtensionFeed, B as Button, g as ButtonLine, p as Checkbox, C as CheckboxPropertyLine, q as ChildWindow, r as Collapse, s as Color3GradientComponent, t as Color3GradientList, v as Color3PropertyLine, w as Color4GradientComponent, x as Color4GradientList, y as Color4PropertyLine, z as ColorPickerPopup, D as ColorStepGradientComponent, E as ComboBox, F as ComboBoxPropertyLine, G as ConstructorFactory, H as ConvertOptions, I as DebugServiceIdentity, J as DetachDebugLayer, K as DraggableLine, O as Dropdown, Q as EntitySelector, R as ErrorBoundary, U as ExtensibleAccordion, W as FactorGradientComponent, X as FactorGradientList, Y as FileUploadLine, Z as GetPropertyDescriptor, _ as GizmoServiceIdentity, $ as HexPropertyLine, a0 as InfoLabel, a1 as InputHexField, a2 as InputHsvField, a3 as Inspector, a4 as InterceptFunction, a5 as InterceptProperty, a6 as IsPropertyReadonly, a7 as LineContainer, j as Link, a8 as LinkPropertyLine, L as LinkToEntity, a9 as LinkToEntityPropertyLine, aa as List, ab as MakeDialogTeachingMoment, ac as MakeLazyComponent, ad as MakePopoverTeachingMoment, ae as MakePropertyHook, af as MakeTeachingMoment, ag as MaterialSelector, M as MessageBar, ah as NodeSelector, ai as NumberDropdown, aj as NumberDropdownPropertyLine, N as NumberInputPropertyLine, ak as ObservableCollection, al as Pane, am as PlaceholderPropertyLine, P as Popover, an as PositionedPopover, ao as PropertiesServiceIdentity, ap as Property, aq as PropertyContext, ar as PropertyLine, as as QuaternionPropertyLine, at as RotationVectorPropertyLine, c as SceneContextIdentity, au as SceneExplorerServiceIdentity, av as SearchBar, aw as SearchBox, ax as SelectionServiceDefinition, d as SelectionServiceIdentity, ay as SettingsServiceIdentity, az as SettingsStore, aA as SettingsStoreIdentity, b as ShellServiceIdentity, aB as ShowInspector, aC as SidePaneContainer, aD as SkeletonSelector, aE as Slider, aF as SpinButton, S as SpinButtonPropertyLine, aG as StatsServiceIdentity, aH as StringDropdown, aI as StringDropdownPropertyLine, aJ as StringifiedPropertyLine, aK as Switch, aL as SwitchPropertyLine, aM as SyncedSliderInput, aN as SyncedSliderPropertyLine, aO as TeachingMoment, aP as TextAreaPropertyLine, aQ as TextInput, T as TextInputPropertyLine, aR as TextPropertyLine, aS as Textarea, aT as TextureSelector, aU as TextureUpload, aV as Theme, aW as ThemeServiceIdentity, aX as ToastProvider, aY as ToggleButton, h as ToolsServiceIdentity, aZ as Tooltip, a_ as UploadButton, a$ as Vector2PropertyLine, V as Vector3PropertyLine, b0 as Vector4PropertyLine, b1 as WatcherServiceIdentity, b2 as useAngleConverters, b3 as useAsyncResource, b4 as useColor3Property, b5 as useColor4Property, b6 as useEventListener, b7 as useEventfulState, b8 as useInterceptObservable, b9 as useKeyListener, ba as useKeyState, bb as useObservableCollection, e as useObservableState, bc as useOrderedObservableCollection, bd as usePollingObservable, a as useProperty, be as usePropertyChangedNotifier, bf as useQuaternionProperty, bg as useResource, bh as useSetting, bi as useTheme, bj as useThemeMode, u as useToast, bk as useVector3Property } from './index-CIc0CbG8.js';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@fluentui/react-components';
|
|
@@ -144,6 +144,7 @@ import '@babylonjs/core/Misc/sceneSerializer.js';
|
|
|
144
144
|
import '@babylonjs/core/Misc/environmentTextureTools.js';
|
|
145
145
|
import '@babylonjs/core/Loading/sceneLoader.js';
|
|
146
146
|
import '@babylonjs/core/Misc/filesInput.js';
|
|
147
|
+
import '@babylonjs/loaders/glTF/2.0/glTFLoaderExtensionRegistry.js';
|
|
147
148
|
import '@babylonjs/loaders/glTF/glTFFileLoader.js';
|
|
148
149
|
import '@babylonjs/loaders/glTF/glTFValidation.js';
|
|
149
150
|
import '@babylonjs/core/Engines/engineStore.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 { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
2
|
-
import { P as Popover, u as useToast, B as Button, L as LinkToEntity, T as TextInputPropertyLine, S as SpinButtonPropertyLine, C as CheckboxPropertyLine, V as Vector3PropertyLine, a as useProperty, M as MessageBar, b as ShellServiceIdentity, c as SceneContextIdentity, d as SelectionServiceIdentity, e as useObservableState, A as Accordion, f as AccordionSection } from './index-
|
|
2
|
+
import { P as Popover, u as useToast, B as Button, L as LinkToEntity, T as TextInputPropertyLine, S as SpinButtonPropertyLine, C as CheckboxPropertyLine, V as Vector3PropertyLine, a as useProperty, M as MessageBar, b as ShellServiceIdentity, c as SceneContextIdentity, d as SelectionServiceIdentity, e as useObservableState, A as Accordion, f as AccordionSection } from './index-CIc0CbG8.js';
|
|
3
3
|
import { SettingsRegular, CollectionsAdd20Regular } from '@fluentui/react-icons';
|
|
4
4
|
import '@babylonjs/core/Particles/webgl2ParticleSystem.js';
|
|
5
5
|
import '@babylonjs/core/Rendering/prePassRendererSceneComponent.js';
|
|
@@ -153,6 +153,7 @@ import '@babylonjs/core/Misc/screenshotTools.js';
|
|
|
153
153
|
import '@babylonjs/core/Misc/videoRecorder.js';
|
|
154
154
|
import '@babylonjs/core/Misc/sceneSerializer.js';
|
|
155
155
|
import '@babylonjs/core/Misc/environmentTextureTools.js';
|
|
156
|
+
import '@babylonjs/loaders/glTF/2.0/glTFLoaderExtensionRegistry.js';
|
|
156
157
|
import '@babylonjs/loaders/glTF/glTFFileLoader.js';
|
|
157
158
|
import '@babylonjs/loaders/glTF/glTFValidation.js';
|
|
158
159
|
import '@babylonjs/core/Engines/engineStore.js';
|
|
@@ -755,4 +756,4 @@ var quickCreateToolsService = {
|
|
|
755
756
|
};
|
|
756
757
|
|
|
757
758
|
export { CreateToolsServiceDefinition, quickCreateToolsService as default };
|
|
758
|
-
//# sourceMappingURL=quickCreateToolsService-
|
|
759
|
+
//# sourceMappingURL=quickCreateToolsService-D-cyDKNQ.js.map
|