babylonjs-inspector 7.31.0 → 7.31.2
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/babylon.inspector.d.ts
CHANGED
|
@@ -1165,6 +1165,9 @@ declare module INSPECTOR {
|
|
|
1165
1165
|
}
|
|
1166
1166
|
|
|
1167
1167
|
|
|
1168
|
+
/**
|
|
1169
|
+
*
|
|
1170
|
+
*/
|
|
1168
1171
|
export class PropertyGridTabComponent extends PaneComponent {
|
|
1169
1172
|
private _timerIntervalId;
|
|
1170
1173
|
private _lockObject;
|
|
@@ -2054,6 +2057,23 @@ declare module INSPECTOR {
|
|
|
2054
2057
|
}
|
|
2055
2058
|
|
|
2056
2059
|
|
|
2060
|
+
interface ISkyMaterialPropertyGridComponentProps {
|
|
2061
|
+
globalState: GlobalState;
|
|
2062
|
+
material: BABYLON.SkyMaterial;
|
|
2063
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2064
|
+
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
2065
|
+
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2066
|
+
}
|
|
2067
|
+
/**
|
|
2068
|
+
* Property grid component for the BABYLON.SkyMaterial
|
|
2069
|
+
*/
|
|
2070
|
+
export class SkyMaterialPropertyGridComponent extends React.Component<ISkyMaterialPropertyGridComponentProps> {
|
|
2071
|
+
constructor(props: ISkyMaterialPropertyGridComponentProps);
|
|
2072
|
+
renderSky(): import("react/jsx-runtime").JSX.Element;
|
|
2073
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
|
|
2057
2077
|
interface IPBRSpecularGlossinessMaterialPropertyGridComponentProps {
|
|
2058
2078
|
globalState: GlobalState;
|
|
2059
2079
|
material: BABYLON.PBRSpecularGlossinessMaterial;
|
|
@@ -5119,6 +5139,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
5119
5139
|
iconLabel?: string;
|
|
5120
5140
|
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
5121
5141
|
unit?: React.ReactNode;
|
|
5142
|
+
allowOverflow?: boolean;
|
|
5122
5143
|
}
|
|
5123
5144
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
5124
5145
|
value: number;
|
|
@@ -1405,6 +1405,9 @@ export class SettingsTabComponent extends PaneComponent {
|
|
|
1405
1405
|
declare module "babylonjs-inspector/components/actionTabs/tabs/propertyGridTabComponent" {
|
|
1406
1406
|
import { IPaneComponentProps } from "babylonjs-inspector/components/actionTabs/paneComponent";
|
|
1407
1407
|
import { PaneComponent } from "babylonjs-inspector/components/actionTabs/paneComponent";
|
|
1408
|
+
/**
|
|
1409
|
+
*
|
|
1410
|
+
*/
|
|
1408
1411
|
export class PropertyGridTabComponent extends PaneComponent {
|
|
1409
1412
|
private _timerIntervalId;
|
|
1410
1413
|
private _lockObject;
|
|
@@ -2644,6 +2647,31 @@ export class StandardMaterialPropertyGridComponent extends React.Component<IStan
|
|
|
2644
2647
|
constructor(props: IStandardMaterialPropertyGridComponentProps);
|
|
2645
2648
|
|
|
2646
2649
|
|
|
2650
|
+
}
|
|
2651
|
+
export {};
|
|
2652
|
+
|
|
2653
|
+
}
|
|
2654
|
+
declare module "babylonjs-inspector/components/actionTabs/tabs/propertyGrids/materials/skyMaterialPropertyGridComponent" {
|
|
2655
|
+
import * as React from "react";
|
|
2656
|
+
import { Observable } from "babylonjs/Misc/observable";
|
|
2657
|
+
import { SkyMaterial } from "babylonjs-materials/sky/skyMaterial";
|
|
2658
|
+
import { PropertyChangedEvent } from "babylonjs-inspector/components/propertyChangedEvent";
|
|
2659
|
+
import { LockObject } from "babylonjs-inspector/tabs/propertyGrids/lockObject";
|
|
2660
|
+
import { GlobalState } from "babylonjs-inspector/components/globalState";
|
|
2661
|
+
interface ISkyMaterialPropertyGridComponentProps {
|
|
2662
|
+
globalState: GlobalState;
|
|
2663
|
+
material: SkyMaterial;
|
|
2664
|
+
lockObject: LockObject;
|
|
2665
|
+
onSelectionChangedObservable?: Observable<any>;
|
|
2666
|
+
onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
|
2667
|
+
}
|
|
2668
|
+
/**
|
|
2669
|
+
* Property grid component for the SkyMaterial
|
|
2670
|
+
*/
|
|
2671
|
+
export class SkyMaterialPropertyGridComponent extends React.Component<ISkyMaterialPropertyGridComponentProps> {
|
|
2672
|
+
constructor(props: ISkyMaterialPropertyGridComponentProps);
|
|
2673
|
+
|
|
2674
|
+
|
|
2647
2675
|
}
|
|
2648
2676
|
export {};
|
|
2649
2677
|
|
|
@@ -6074,6 +6102,7 @@ interface ISliderLineComponentProps {
|
|
|
6074
6102
|
iconLabel?: string;
|
|
6075
6103
|
lockObject: LockObject;
|
|
6076
6104
|
unit?: React.ReactNode;
|
|
6105
|
+
allowOverflow?: boolean;
|
|
6077
6106
|
}
|
|
6078
6107
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
6079
6108
|
value: number;
|
|
@@ -9012,6 +9041,9 @@ declare module INSPECTOR {
|
|
|
9012
9041
|
}
|
|
9013
9042
|
|
|
9014
9043
|
|
|
9044
|
+
/**
|
|
9045
|
+
*
|
|
9046
|
+
*/
|
|
9015
9047
|
export class PropertyGridTabComponent extends PaneComponent {
|
|
9016
9048
|
private _timerIntervalId;
|
|
9017
9049
|
private _lockObject;
|
|
@@ -9901,6 +9933,23 @@ declare module INSPECTOR {
|
|
|
9901
9933
|
}
|
|
9902
9934
|
|
|
9903
9935
|
|
|
9936
|
+
interface ISkyMaterialPropertyGridComponentProps {
|
|
9937
|
+
globalState: GlobalState;
|
|
9938
|
+
material: BABYLON.SkyMaterial;
|
|
9939
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
9940
|
+
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
9941
|
+
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
9942
|
+
}
|
|
9943
|
+
/**
|
|
9944
|
+
* Property grid component for the BABYLON.SkyMaterial
|
|
9945
|
+
*/
|
|
9946
|
+
export class SkyMaterialPropertyGridComponent extends React.Component<ISkyMaterialPropertyGridComponentProps> {
|
|
9947
|
+
constructor(props: ISkyMaterialPropertyGridComponentProps);
|
|
9948
|
+
renderSky(): import("react/jsx-runtime").JSX.Element;
|
|
9949
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9950
|
+
}
|
|
9951
|
+
|
|
9952
|
+
|
|
9904
9953
|
interface IPBRSpecularGlossinessMaterialPropertyGridComponentProps {
|
|
9905
9954
|
globalState: GlobalState;
|
|
9906
9955
|
material: BABYLON.PBRSpecularGlossinessMaterial;
|
|
@@ -12966,6 +13015,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12966
13015
|
iconLabel?: string;
|
|
12967
13016
|
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
12968
13017
|
unit?: React.ReactNode;
|
|
13018
|
+
allowOverflow?: boolean;
|
|
12969
13019
|
}
|
|
12970
13020
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
12971
13021
|
value: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-inspector",
|
|
3
|
-
"version": "7.31.
|
|
3
|
+
"version": "7.31.2",
|
|
4
4
|
"main": "babylon.inspector.bundle.max.js",
|
|
5
5
|
"types": "babylon.inspector.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.31.
|
|
18
|
-
"babylonjs-gui": "^7.31.
|
|
19
|
-
"babylonjs-gui-editor": "^7.31.
|
|
20
|
-
"babylonjs-loaders": "^7.31.
|
|
21
|
-
"babylonjs-materials": "^7.31.
|
|
22
|
-
"babylonjs-serializers": "^7.31.
|
|
17
|
+
"babylonjs": "^7.31.2",
|
|
18
|
+
"babylonjs-gui": "^7.31.2",
|
|
19
|
+
"babylonjs-gui-editor": "^7.31.2",
|
|
20
|
+
"babylonjs-loaders": "^7.31.2",
|
|
21
|
+
"babylonjs-materials": "^7.31.2",
|
|
22
|
+
"babylonjs-serializers": "^7.31.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@dev/build-tools": "1.0.0",
|