@babylonjs/inspector 5.0.0-beta.9 → 5.0.0-rc.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.
@@ -810,6 +810,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/re
|
|
810
810
|
}
|
811
811
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/debugTabComponent" {
|
812
812
|
import { PaneComponent, IPaneComponentProps } from "@babylonjs/inspector/components/actionTabs/paneComponent";
|
813
|
+
import "@babylonjs/core/Physics/physicsEngineComponent";
|
813
814
|
export class DebugTabComponent extends PaneComponent {
|
814
815
|
private _physicsViewersEnabled;
|
815
816
|
constructor(props: IPaneComponentProps);
|
@@ -972,6 +973,19 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/numericInputCompon
|
|
972
973
|
render(): JSX.Element;
|
973
974
|
}
|
974
975
|
}
|
976
|
+
declare module "@babylonjs/inspector/sharedUiComponents/lines/inputArrowsComponent" {
|
977
|
+
import * as React from "react";
|
978
|
+
interface IInputArrowsComponentProps {
|
979
|
+
incrementValue: (amount: number) => void;
|
980
|
+
setDragging: (dragging: boolean) => void;
|
981
|
+
}
|
982
|
+
export class InputArrowsComponent extends React.Component<IInputArrowsComponentProps> {
|
983
|
+
private _arrowsRef;
|
984
|
+
private _drag;
|
985
|
+
private _releaseListener;
|
986
|
+
render(): JSX.Element;
|
987
|
+
}
|
988
|
+
}
|
975
989
|
declare module "@babylonjs/inspector/sharedUiComponents/lines/textInputLineComponent" {
|
976
990
|
import * as React from "react";
|
977
991
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
@@ -993,18 +1007,25 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/textInputLineCompo
|
|
993
1007
|
unit?: string;
|
994
1008
|
onUnitClicked?: (unit: string) => void;
|
995
1009
|
unitLocked?: boolean;
|
1010
|
+
arrows?: boolean;
|
1011
|
+
arrowsIncrement?: (amount: number) => void;
|
1012
|
+
step?: number;
|
996
1013
|
}
|
997
1014
|
export class TextInputLineComponent extends React.Component<ITextInputLineComponentProps, {
|
998
1015
|
value: string;
|
1016
|
+
dragging: boolean;
|
999
1017
|
}> {
|
1000
1018
|
private _localChange;
|
1001
1019
|
constructor(props: ITextInputLineComponentProps);
|
1002
1020
|
componentWillUnmount(): void;
|
1003
1021
|
shouldComponentUpdate(nextProps: ITextInputLineComponentProps, nextState: {
|
1004
1022
|
value: string;
|
1023
|
+
dragging: boolean;
|
1005
1024
|
}): boolean;
|
1006
1025
|
raiseOnPropertyChanged(newValue: string, previousValue: string): void;
|
1007
1026
|
updateValue(value: string): void;
|
1027
|
+
incrementValue(amount: number): void;
|
1028
|
+
onKeyDown(event: React.KeyboardEvent): void;
|
1008
1029
|
render(): JSX.Element;
|
1009
1030
|
}
|
1010
1031
|
}
|
@@ -1200,6 +1221,7 @@ declare module "@babylonjs/inspector/components/popupComponent" {
|
|
1200
1221
|
private _host;
|
1201
1222
|
constructor(props: IPopupComponentProps);
|
1202
1223
|
componentDidMount(): void;
|
1224
|
+
onBeforeUnloadListener: () => void;
|
1203
1225
|
openPopup(): void;
|
1204
1226
|
componentWillUnmount(): void;
|
1205
1227
|
getWindow(): Window | null;
|
@@ -1431,6 +1453,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1431
1453
|
animationIndex: number;
|
1432
1454
|
keyIndex: number;
|
1433
1455
|
} | null;
|
1456
|
+
hasActiveQuaternionAnimationKeyPoints(): boolean;
|
1434
1457
|
}
|
1435
1458
|
}
|
1436
1459
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/controls/textInputComponent" {
|
@@ -2733,6 +2756,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
2733
2756
|
import { TextureLinkLineComponent } from "@babylonjs/inspector/components/actionTabs/lines/textureLinkLineComponent";
|
2734
2757
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
2735
2758
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
2759
|
+
import "@babylonjs/core/Rendering/prePassRendererSceneComponent";
|
2760
|
+
import "@babylonjs/core/Rendering/subSurfaceSceneComponent";
|
2736
2761
|
interface IPBRMaterialPropertyGridComponentProps {
|
2737
2762
|
globalState: GlobalState;
|
2738
2763
|
material: PBRMaterial;
|
@@ -2798,6 +2823,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/sc
|
|
2798
2823
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
2799
2824
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
2800
2825
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
2826
|
+
import "@babylonjs/core/Physics/physicsEngineComponent";
|
2801
2827
|
interface IScenePropertyGridComponentProps {
|
2802
2828
|
globalState: GlobalState;
|
2803
2829
|
scene: Scene;
|
@@ -3011,6 +3037,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/me
|
|
3011
3037
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3012
3038
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3013
3039
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3040
|
+
import "@babylonjs/core/Physics/physicsEngineComponent";
|
3014
3041
|
interface IMeshPropertyGridComponentProps {
|
3015
3042
|
globalState: GlobalState;
|
3016
3043
|
mesh: Mesh;
|
@@ -4423,6 +4450,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/meshTreeI
|
|
4423
4450
|
import { AbstractMesh } from "@babylonjs/core/Meshes/abstractMesh";
|
4424
4451
|
import * as React from "react";
|
4425
4452
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
4453
|
+
import "@babylonjs/core/Rendering/boundingBoxRenderer";
|
4426
4454
|
interface IMeshTreeItemComponentProps {
|
4427
4455
|
mesh: AbstractMesh;
|
4428
4456
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4859,6 +4887,9 @@ declare module "@babylonjs/inspector/components/sceneExplorer/sceneExplorerCompo
|
|
4859
4887
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4860
4888
|
import { Scene } from "@babylonjs/core/scene";
|
4861
4889
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
4890
|
+
import "@babylonjs/core/Sprites/spriteSceneComponent";
|
4891
|
+
import "@babylonjs/core/Audio/audioSceneComponent";
|
4892
|
+
import "@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipelineManagerSceneComponent";
|
4862
4893
|
interface ISceneExplorerFilterComponentProps {
|
4863
4894
|
onFilter: (filter: string) => void;
|
4864
4895
|
}
|
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-
|
7
|
+
"version": "5.0.0-rc.0",
|
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-
|
31
|
-
"@babylonjs/gui": "5.0.0-
|
32
|
-
"@babylonjs/loaders": "5.0.0-
|
33
|
-
"@babylonjs/materials": "5.0.0-
|
34
|
-
"@babylonjs/serializers": "5.0.0-
|
35
|
-
"babylonjs-gltf2interface": "5.0.0-
|
30
|
+
"@babylonjs/core": "5.0.0-rc.0",
|
31
|
+
"@babylonjs/gui": "5.0.0-rc.0",
|
32
|
+
"@babylonjs/loaders": "5.0.0-rc.0",
|
33
|
+
"@babylonjs/materials": "5.0.0-rc.0",
|
34
|
+
"@babylonjs/serializers": "5.0.0-rc.0",
|
35
|
+
"babylonjs-gltf2interface": "5.0.0-rc.0",
|
36
36
|
"tslib": "^2.3.1"
|
37
37
|
},
|
38
38
|
"peerDependencies": {
|