@babylonjs/inspector 8.40.1-preview → 8.41.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/{captureService-BRTZVOQG.js → captureService-CAxDQamt.js} +2 -2
- package/lib/{captureService-BRTZVOQG.js.map → captureService-CAxDQamt.js.map} +1 -1
- package/lib/{exportService-DQHU4y0U.js → exportService-C670vSgg.js} +2 -2
- package/lib/{exportService-DQHU4y0U.js.map → exportService-C670vSgg.js.map} +1 -1
- package/lib/{extensionsListService-DBYs42So.js → extensionsListService-CwKHXUHO.js} +2 -2
- package/lib/{extensionsListService-DBYs42So.js.map → extensionsListService-CwKHXUHO.js.map} +1 -1
- package/lib/{importService-JfYlYCYK.js → importService-CJtBZSUv.js} +2 -2
- package/lib/{importService-JfYlYCYK.js.map → importService-CJtBZSUv.js.map} +1 -1
- package/lib/{index-qUYZSx66.js → index-Cxm78n40.js} +8 -10
- package/lib/index-Cxm78n40.js.map +1 -0
- package/lib/index.d.ts +22 -8
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/lib/index-qUYZSx66.js.map +0 -1
package/lib/index.d.ts
CHANGED
|
@@ -5805,8 +5805,8 @@ interface IPath2D {
|
|
|
5805
5805
|
/**
|
|
5806
5806
|
* Adds a cubic Bézier curve to the current path.
|
|
5807
5807
|
* @param cp1x The x-axis coordinate of the first control point.
|
|
5808
|
-
* @param
|
|
5809
|
-
* @param
|
|
5808
|
+
* @param cp1y The y-axis coordinate of the first control point.
|
|
5809
|
+
* @param cp2x The x-axis coordinate of the second control point.
|
|
5810
5810
|
* @param cp2y The y-axis coordinate of the second control point.
|
|
5811
5811
|
* @param x The x-axis coordinate of the end point.
|
|
5812
5812
|
* @param y The y-axis coordinate of the end point.
|
|
@@ -5827,7 +5827,7 @@ interface IPath2D {
|
|
|
5827
5827
|
* @param radius The arc's radius. Must be positive.
|
|
5828
5828
|
* @param startAngle The angle at which the arc starts in radians, measured from the positive x-axis.
|
|
5829
5829
|
* @param endAngle The angle at which the arc ends in radians, measured from the positive x-axis.
|
|
5830
|
-
* @param
|
|
5830
|
+
* @param counterclockwise An optional Boolean. If true, draws the arc counter-clockwise between the start and end angles. The default is false (clockwise).
|
|
5831
5831
|
*/
|
|
5832
5832
|
arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;
|
|
5833
5833
|
/**
|
|
@@ -26702,11 +26702,15 @@ declare class ObjectRenderer {
|
|
|
26702
26702
|
*/
|
|
26703
26703
|
getCustomRenderList: Nullable<(layerOrFace: number, renderList: Nullable<Immutable<Array<AbstractMesh>>>, renderListLength: number) => Nullable<Array<AbstractMesh>>>;
|
|
26704
26704
|
/**
|
|
26705
|
-
* Define if
|
|
26705
|
+
* Define if meshes should be rendered (default is true).
|
|
26706
|
+
*/
|
|
26707
|
+
renderMeshes: boolean;
|
|
26708
|
+
/**
|
|
26709
|
+
* Define if particles should be rendered (default is true).
|
|
26706
26710
|
*/
|
|
26707
26711
|
renderParticles: boolean;
|
|
26708
26712
|
/**
|
|
26709
|
-
* Define if sprites should be rendered.
|
|
26713
|
+
* Define if sprites should be rendered (default is false).
|
|
26710
26714
|
*/
|
|
26711
26715
|
renderSprites: boolean;
|
|
26712
26716
|
/**
|
|
@@ -47035,9 +47039,8 @@ declare module "../../Engines/abstractEngine" {
|
|
|
47035
47039
|
* @param effect The compute effect
|
|
47036
47040
|
* @param context The compute context
|
|
47037
47041
|
* @param bindings The list of resources to bind to the shader
|
|
47038
|
-
* @param
|
|
47039
|
-
* @param
|
|
47040
|
-
* @param z The number of workgroups to execute on the Z dimension
|
|
47042
|
+
* @param buffer The buffer containing the dispatch parameters
|
|
47043
|
+
* @param offset The offset in the buffer where the dispatch parameters start
|
|
47041
47044
|
* @param bindingsMapping list of bindings mapping (key is property name, value is binding location)
|
|
47042
47045
|
* @param gpuPerfCounter GPU time computed for the compute shader will be assigned to this object
|
|
47043
47046
|
*/
|
|
@@ -50196,6 +50199,12 @@ declare class FrameGraphObjectRendererTask extends FrameGraphTask {
|
|
|
50196
50199
|
* It is also used to determine the main camera used by the frame graph: this is the camera used by the main object renderer.
|
|
50197
50200
|
*/
|
|
50198
50201
|
isMainObjectRenderer: boolean;
|
|
50202
|
+
private _renderMeshes;
|
|
50203
|
+
/**
|
|
50204
|
+
* Defines if meshes should be rendered (default is true).
|
|
50205
|
+
*/
|
|
50206
|
+
get renderMeshes(): boolean;
|
|
50207
|
+
set renderMeshes(value: boolean);
|
|
50199
50208
|
private _renderParticles;
|
|
50200
50209
|
/**
|
|
50201
50210
|
* Defines if particles should be rendered (default is true).
|
|
@@ -50273,6 +50282,11 @@ declare class FrameGraphObjectRendererTask extends FrameGraphTask {
|
|
|
50273
50282
|
getClassName(): string;
|
|
50274
50283
|
record(skipCreationOfDisabledPasses?: boolean, additionalExecute?: (context: FrameGraphRenderContext) => void): FrameGraphRenderPass;
|
|
50275
50284
|
dispose(): void;
|
|
50285
|
+
protected _resolveDanglingHandles(targetTextures: FrameGraphTextureHandle[]): void;
|
|
50286
|
+
protected _checkParameters(): void;
|
|
50287
|
+
protected _checkTextureCompatibility(targetTextures: FrameGraphTextureHandle[]): boolean;
|
|
50288
|
+
protected _getTargetHandles(): FrameGraphTextureHandle[];
|
|
50289
|
+
protected _prepareRendering(context: FrameGraphRenderContext, depthEnabled: boolean): void;
|
|
50276
50290
|
protected _setLightsForShadow(): void;
|
|
50277
50291
|
}
|
|
50278
50292
|
|
package/lib/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a5 as Accordion, a4 as AccordionSection, A as AttachDebugLayer, aA as BooleanBadgePropertyLine, l as BoundProperty, n as BuiltInsExtensionFeed, a6 as Button, B as ButtonLine, a7 as Checkbox, aB as CheckboxPropertyLine, C as Collapse, ah as Color3GradientComponent, ax as Color3GradientList, aC as Color3PropertyLine, ai as Color4GradientComponent, ay as Color4GradientList, aD as Color4PropertyLine, a8 as ColorPickerPopup, aj as ColorStepGradientComponent, ab as ComboBox, _ as ConstructorFactory, i as ConvertOptions, D as DebugServiceIdentity, j as DetachDebugLayer, ac as DraggableLine, ad as Dropdown, E as ExtensibleAccordion, ag as FactorGradientComponent, aw as FactorGradientList, F as FileUploadLine, W as GetPropertyDescriptor, aE as HexPropertyLine, ak as InfoLabel, a9 as InputHexField, aa as InputHsvField, I as Inspector, V as InterceptFunction, Y as InterceptProperty, X as IsPropertyReadonly, aJ as LineContainer, L as Link, aH as LinkPropertyLine, m as LinkToEntityPropertyLine, al as List, U as MakeDialogTeachingMoment, M as MakeLazyComponent, c as MakePopoverTeachingMoment, t as MakePropertyHook, R as MakeTeachingMoment, am as MessageBar, ae as NumberDropdown, N as NumberDropdownPropertyLine, aG as NumberInputPropertyLine, Z as ObservableCollection, az as Pane, aK as PlaceholderPropertyLine, an as PositionedPopover, P as PropertiesServiceIdentity, aI as PropertyLine, aQ as QuaternionPropertyLine, aP as RotationVectorPropertyLine, $ as SceneContextIdentity, f as SceneExplorerServiceIdentity, ao as SearchBar, ap as SearchBox, a1 as SelectionServiceDefinition, a0 as SelectionServiceIdentity, a2 as SettingsContextIdentity, g as SettingsServiceIdentity, b as ShellServiceIdentity, a3 as ShowInspector, e as SidePaneContainer, aq as SpinButton, aL as SpinButtonPropertyLine, h as StatsServiceIdentity, af as StringDropdown, k as StringDropdownPropertyLine, aM as StringifiedPropertyLine, ar as Switch, S as SwitchPropertyLine, as as SyncedSliderInput, a as SyncedSliderPropertyLine, d as TeachingMoment, aN as TextAreaPropertyLine, au as TextInput, aF as TextInputPropertyLine, aO as TextPropertyLine, at as Textarea, av as ToggleButton, T as ToolsServiceIdentity, aR as Vector2PropertyLine, aS as Vector3PropertyLine, aT as Vector4PropertyLine, Q as useAngleConverters, J as useAsyncResource, q as useColor3Property, r as useColor4Property, K as useCompactMode, w as useEventfulState, v as useInterceptObservable, y as useObservableCollection, x as useObservableState, z as useOrderedObservableCollection, G as usePollingObservable, o as useProperty, s as useQuaternionProperty, H as useResource, O as useSidePaneDockOverrides, p as useVector3Property } from './index-
|
|
1
|
+
export { a5 as Accordion, a4 as AccordionSection, A as AttachDebugLayer, aA as BooleanBadgePropertyLine, l as BoundProperty, n as BuiltInsExtensionFeed, a6 as Button, B as ButtonLine, a7 as Checkbox, aB as CheckboxPropertyLine, C as Collapse, ah as Color3GradientComponent, ax as Color3GradientList, aC as Color3PropertyLine, ai as Color4GradientComponent, ay as Color4GradientList, aD as Color4PropertyLine, a8 as ColorPickerPopup, aj as ColorStepGradientComponent, ab as ComboBox, _ as ConstructorFactory, i as ConvertOptions, D as DebugServiceIdentity, j as DetachDebugLayer, ac as DraggableLine, ad as Dropdown, E as ExtensibleAccordion, ag as FactorGradientComponent, aw as FactorGradientList, F as FileUploadLine, W as GetPropertyDescriptor, aE as HexPropertyLine, ak as InfoLabel, a9 as InputHexField, aa as InputHsvField, I as Inspector, V as InterceptFunction, Y as InterceptProperty, X as IsPropertyReadonly, aJ as LineContainer, L as Link, aH as LinkPropertyLine, m as LinkToEntityPropertyLine, al as List, U as MakeDialogTeachingMoment, M as MakeLazyComponent, c as MakePopoverTeachingMoment, t as MakePropertyHook, R as MakeTeachingMoment, am as MessageBar, ae as NumberDropdown, N as NumberDropdownPropertyLine, aG as NumberInputPropertyLine, Z as ObservableCollection, az as Pane, aK as PlaceholderPropertyLine, an as PositionedPopover, P as PropertiesServiceIdentity, aI as PropertyLine, aQ as QuaternionPropertyLine, aP as RotationVectorPropertyLine, $ as SceneContextIdentity, f as SceneExplorerServiceIdentity, ao as SearchBar, ap as SearchBox, a1 as SelectionServiceDefinition, a0 as SelectionServiceIdentity, a2 as SettingsContextIdentity, g as SettingsServiceIdentity, b as ShellServiceIdentity, a3 as ShowInspector, e as SidePaneContainer, aq as SpinButton, aL as SpinButtonPropertyLine, h as StatsServiceIdentity, af as StringDropdown, k as StringDropdownPropertyLine, aM as StringifiedPropertyLine, ar as Switch, S as SwitchPropertyLine, as as SyncedSliderInput, a as SyncedSliderPropertyLine, d as TeachingMoment, aN as TextAreaPropertyLine, au as TextInput, aF as TextInputPropertyLine, aO as TextPropertyLine, at as Textarea, av as ToggleButton, T as ToolsServiceIdentity, aR as Vector2PropertyLine, aS as Vector3PropertyLine, aT as Vector4PropertyLine, Q as useAngleConverters, J as useAsyncResource, q as useColor3Property, r as useColor4Property, K as useCompactMode, w as useEventfulState, v as useInterceptObservable, y as useObservableCollection, x as useObservableState, z as useOrderedObservableCollection, G as usePollingObservable, o as useProperty, s as useQuaternionProperty, H as useResource, O as useSidePaneDockOverrides, p as useVector3Property } from './index-Cxm78n40.js';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@babylonjs/core/Maths/math.color.js';
|