@babylonjs/inspector 6.19.0 → 6.20.0
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.
@@ -3205,6 +3205,7 @@ export class ToolsTabComponent extends PaneComponent {
|
|
3205
3205
|
componentDidMount(): void;
|
3206
3206
|
componentWillUnmount(): void;
|
3207
3207
|
captureScreenshot(): void;
|
3208
|
+
captureEquirectangular(): void;
|
3208
3209
|
captureRender(): void;
|
3209
3210
|
recordVideo(): void;
|
3210
3211
|
recordGIFInternal(): void;
|
@@ -7130,6 +7131,7 @@ export class StateManager {
|
|
7130
7131
|
}>;
|
7131
7132
|
exportData: (data: any, frame?: Nullable<GraphFrame>) => string;
|
7132
7133
|
isElbowConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
7134
|
+
isDebugConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
7133
7135
|
applyNodePortDesign: (data: IPortData, element: HTMLElement, img: HTMLImageElement, pip: HTMLDivElement) => void;
|
7134
7136
|
storeEditorData: (serializationObject: any, frame?: Nullable<GraphFrame>) => void;
|
7135
7137
|
getEditorDataMap: () => {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.20.0",
|
4
4
|
"module": "dist/babylon.inspector.bundle.max.js",
|
5
5
|
"main": "dist/babylon.inspector.bundle.max.js",
|
6
6
|
"typings": "dist/babylon.inspector.module.d.ts",
|
@@ -32,12 +32,12 @@
|
|
32
32
|
"@types/react-dom": ">=16.0.9"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
|
-
"@babylonjs/core": "^6.
|
36
|
-
"@babylonjs/gui": "^6.
|
37
|
-
"@babylonjs/gui-editor": "^6.
|
38
|
-
"@babylonjs/loaders": "^6.
|
39
|
-
"@babylonjs/materials": "^6.
|
40
|
-
"@babylonjs/serializers": "^6.
|
35
|
+
"@babylonjs/core": "^6.20.0",
|
36
|
+
"@babylonjs/gui": "^6.20.0",
|
37
|
+
"@babylonjs/gui-editor": "^6.20.0",
|
38
|
+
"@babylonjs/loaders": "^6.20.0",
|
39
|
+
"@babylonjs/materials": "^6.20.0",
|
40
|
+
"@babylonjs/serializers": "^6.20.0",
|
41
41
|
"@lts/gui": "1.0.0",
|
42
42
|
"react": "^17.0.2",
|
43
43
|
"react-dom": "^17.0.2"
|