@babylonjs/inspector 5.0.0-beta.4 → 5.0.0-beta.5
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.
@@ -524,6 +524,8 @@ declare module "@babylonjs/inspector/components/graph/canvasGraphService" {
|
|
524
524
|
* Force resets the position in the data, effectively returning to the most current data.
|
525
525
|
*/
|
526
526
|
resetDataPosition(): void;
|
527
|
+
private _prevPointById;
|
528
|
+
private _prevValueById;
|
527
529
|
/**
|
528
530
|
* This method draws the data and sets up the appropriate scales.
|
529
531
|
*/
|
@@ -720,6 +722,10 @@ declare module "@babylonjs/inspector/components/graph/canvasGraphComponent" {
|
|
720
722
|
layoutObservable?: Observable<IPerfLayoutSize>;
|
721
723
|
returnToPlayheadObservable?: Observable<void>;
|
722
724
|
onVisibleRangeChangedObservable?: Observable<IVisibleRangeChangedObservableProps>;
|
725
|
+
initialGraphSize?: {
|
726
|
+
width: number;
|
727
|
+
height: number;
|
728
|
+
};
|
723
729
|
}
|
724
730
|
export const CanvasGraphComponent: React.FC<ICanvasGraphComponentProps>;
|
725
731
|
}
|
@@ -734,6 +740,10 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewe
|
|
734
740
|
layoutObservable: Observable<IPerfLayoutSize>;
|
735
741
|
returnToLiveObservable: Observable<void>;
|
736
742
|
performanceCollector: PerformanceViewerCollector;
|
743
|
+
initialGraphSize?: {
|
744
|
+
width: number;
|
745
|
+
height: number;
|
746
|
+
};
|
737
747
|
}
|
738
748
|
export const PerformanceViewerPopupComponent: React.FC<IPerformanceViewerPopupComponentProps>;
|
739
749
|
}
|
@@ -1294,6 +1304,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1294
1304
|
activeFrame: number;
|
1295
1305
|
fromKey: number;
|
1296
1306
|
toKey: number;
|
1307
|
+
useExistingPlayRange: boolean;
|
1297
1308
|
forwardAnimation: boolean;
|
1298
1309
|
isPlaying: boolean;
|
1299
1310
|
clipLength: number;
|
@@ -1339,6 +1350,9 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1339
1350
|
from: number;
|
1340
1351
|
to: number;
|
1341
1352
|
}>;
|
1353
|
+
lockLastFrameValue: boolean;
|
1354
|
+
lockLastFrameFrame: boolean;
|
1355
|
+
onActiveKeyDataChanged: Observable<number>;
|
1342
1356
|
prepare(): void;
|
1343
1357
|
play(forward: boolean): void;
|
1344
1358
|
stop(): void;
|
@@ -1527,7 +1541,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1527
1541
|
interface ITopBarComponentState {
|
1528
1542
|
keyFrameValue: string;
|
1529
1543
|
keyValue: string;
|
1530
|
-
|
1544
|
+
frameControlEnabled: boolean;
|
1545
|
+
valueControlEnabled: boolean;
|
1531
1546
|
}
|
1532
1547
|
export class TopBarComponent extends React.Component<ITopBarComponentProps, ITopBarComponentState> {
|
1533
1548
|
private _onFrameSetObserver;
|
@@ -1620,6 +1635,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1620
1635
|
private _pointerIsDown;
|
1621
1636
|
private _sourcePointerX;
|
1622
1637
|
private _sourcePointerY;
|
1638
|
+
private _selectionMade;
|
1623
1639
|
private _selectionStartX;
|
1624
1640
|
private _selectionStartY;
|
1625
1641
|
private _onActiveAnimationChangedObserver;
|
@@ -4789,6 +4805,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/sceneTree
|
|
4789
4805
|
isSelected: boolean;
|
4790
4806
|
isInPickingMode: boolean;
|
4791
4807
|
}): boolean;
|
4808
|
+
updateGizmoAutoPicking(isInPickingMode: boolean): void;
|
4792
4809
|
componentDidMount(): void;
|
4793
4810
|
componentWillUnmount(): void;
|
4794
4811
|
onSelect(): void;
|
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
},
|
5
5
|
"name": "@babylonjs/inspector",
|
6
6
|
"description": "The Babylon.js inspector.",
|
7
|
-
"version": "5.0.0-beta.
|
7
|
+
"version": "5.0.0-beta.5",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
10
|
"url": "https://github.com/BabylonJS/Babylon.js.git"
|
@@ -27,12 +27,12 @@
|
|
27
27
|
],
|
28
28
|
"license": "Apache-2.0",
|
29
29
|
"dependencies": {
|
30
|
-
"@babylonjs/core": "5.0.0-beta.
|
31
|
-
"@babylonjs/gui": "5.0.0-beta.
|
32
|
-
"@babylonjs/loaders": "5.0.0-beta.
|
33
|
-
"@babylonjs/materials": "5.0.0-beta.
|
34
|
-
"@babylonjs/serializers": "5.0.0-beta.
|
35
|
-
"babylonjs-gltf2interface": "5.0.0-beta.
|
30
|
+
"@babylonjs/core": "5.0.0-beta.5",
|
31
|
+
"@babylonjs/gui": "5.0.0-beta.5",
|
32
|
+
"@babylonjs/loaders": "5.0.0-beta.5",
|
33
|
+
"@babylonjs/materials": "5.0.0-beta.5",
|
34
|
+
"@babylonjs/serializers": "5.0.0-beta.5",
|
35
|
+
"babylonjs-gltf2interface": "5.0.0-beta.5",
|
36
36
|
"tslib": "^2.3.1"
|
37
37
|
},
|
38
38
|
"peerDependencies": {
|