babylonjs-inspector 7.34.4 → 7.35.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.
|
@@ -47753,17 +47753,17 @@ class TexturePropertyGridComponent extends react__WEBPACK_IMPORTED_MODULE_1__.Co
|
|
|
47753
47753
|
const texture = this.props.texture;
|
|
47754
47754
|
const textureAsRTT = texture;
|
|
47755
47755
|
const samplingMode = [
|
|
47756
|
-
{ label: "Nearest", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_NEAREST },
|
|
47757
|
-
{ label: "Linear", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_LINEAR },
|
|
47758
|
-
{ label: "Linear & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_LINEAR_MIPLINEAR },
|
|
47759
|
-
{ label: "Linear & nearest mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_LINEAR_MIPNEAREST },
|
|
47760
|
-
{ label: "Nearest & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_NEAREST_MIPLINEAR },
|
|
47761
|
-
{ label: "Nearest & nearest mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_NEAREST_MIPNEAREST },
|
|
47762
|
-
{ label: "Nearest/Linear", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_LINEAR },
|
|
47763
|
-
{ label: "Nearest/Linear & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_LINEAR_MIPLINEAR },
|
|
47764
|
-
{ label: "Nearest/Linear & nearest mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_LINEAR_MIPNEAREST },
|
|
47765
|
-
{ label: "Linear/Nearest", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_NEAREST },
|
|
47766
|
-
{ label: "Linear/Nearest & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_NEAREST_MIPLINEAR },
|
|
47756
|
+
{ label: "Nearest", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_NEAREST }, // 1
|
|
47757
|
+
{ label: "Linear", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_LINEAR }, // 2
|
|
47758
|
+
{ label: "Linear & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_LINEAR_MIPLINEAR }, // 3
|
|
47759
|
+
{ label: "Linear & nearest mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_LINEAR_MIPNEAREST }, // 11
|
|
47760
|
+
{ label: "Nearest & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_NEAREST_MIPLINEAR }, // 8
|
|
47761
|
+
{ label: "Nearest & nearest mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_NEAREST_MIPNEAREST }, // 4
|
|
47762
|
+
{ label: "Nearest/Linear", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_LINEAR }, // 7
|
|
47763
|
+
{ label: "Nearest/Linear & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_LINEAR_MIPLINEAR }, // 6
|
|
47764
|
+
{ label: "Nearest/Linear & nearest mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.NEAREST_LINEAR_MIPNEAREST }, // 5
|
|
47765
|
+
{ label: "Linear/Nearest", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_NEAREST }, // 12
|
|
47766
|
+
{ label: "Linear/Nearest & linear mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_NEAREST_MIPLINEAR }, // 10
|
|
47767
47767
|
{ label: "Linear/Nearest & nearest mip", value: core_Misc_tools__WEBPACK_IMPORTED_MODULE_2__.Texture.LINEAR_NEAREST_MIPNEAREST }, // 9
|
|
47768
47768
|
];
|
|
47769
47769
|
const coordinatesMode = [
|
|
@@ -50310,7 +50310,7 @@ class MetadataGridComponent extends react__WEBPACK_IMPORTED_MODULE_1__.Component
|
|
|
50310
50310
|
const validJson = this.parsableJson(this.props.entity.metadata);
|
|
50311
50311
|
const metadataPropType = this.getEntityType(this.props.entity);
|
|
50312
50312
|
this.setState({
|
|
50313
|
-
statusMessage: "",
|
|
50313
|
+
statusMessage: "", // loaded entity
|
|
50314
50314
|
selectedEntityMetadata: this.parseMetaObject(validJson, this.props.entity.metadata),
|
|
50315
50315
|
metadataPropType: metadataPropType,
|
|
50316
50316
|
isValidJson: validJson,
|
|
@@ -58323,7 +58323,7 @@ const Icons = {
|
|
|
58323
58323
|
},
|
|
58324
58324
|
size40: {
|
|
58325
58325
|
on: _imgs_toggleOnIcon_40px_svg__WEBPACK_IMPORTED_MODULE_8__,
|
|
58326
|
-
mixed: "",
|
|
58326
|
+
mixed: "", // unneeded
|
|
58327
58327
|
off: _imgs_toggleOffIcon_40px_svg__WEBPACK_IMPORTED_MODULE_9__,
|
|
58328
58328
|
},
|
|
58329
58329
|
};
|
package/babylon.inspector.d.ts
CHANGED
|
@@ -4105,8 +4105,7 @@ declare module INSPECTOR {
|
|
|
4105
4105
|
|
|
4106
4106
|
}
|
|
4107
4107
|
declare module INSPECTOR.SharedUIComponents {
|
|
4108
|
-
|
|
4109
|
-
/**
|
|
4108
|
+
/**
|
|
4110
4109
|
* Splitter component properties
|
|
4111
4110
|
*/
|
|
4112
4111
|
export interface ISplitterProps {
|
|
@@ -4154,8 +4153,7 @@ declare module INSPECTOR {
|
|
|
4154
4153
|
|
|
4155
4154
|
}
|
|
4156
4155
|
declare module INSPECTOR.SharedUIComponents {
|
|
4157
|
-
|
|
4158
|
-
export enum ControlledSize {
|
|
4156
|
+
export enum ControlledSize {
|
|
4159
4157
|
First = 0,
|
|
4160
4158
|
Second = 1
|
|
4161
4159
|
}
|
|
@@ -4206,8 +4204,7 @@ declare module INSPECTOR {
|
|
|
4206
4204
|
|
|
4207
4205
|
}
|
|
4208
4206
|
declare module INSPECTOR.SharedUIComponents {
|
|
4209
|
-
|
|
4210
|
-
/**
|
|
4207
|
+
/**
|
|
4211
4208
|
* Split container properties
|
|
4212
4209
|
*/
|
|
4213
4210
|
export interface ISplitContainerProps {
|
|
@@ -4323,8 +4320,8 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
4323
4320
|
type: string;
|
|
4324
4321
|
targetX: number;
|
|
4325
4322
|
targetY: number;
|
|
4326
|
-
needRepositioning?: boolean
|
|
4327
|
-
smartAdd?: boolean
|
|
4323
|
+
needRepositioning?: boolean;
|
|
4324
|
+
smartAdd?: boolean;
|
|
4328
4325
|
}>;
|
|
4329
4326
|
onHighlightNodeObservable: BABYLON.Observable<{
|
|
4330
4327
|
data: any;
|
|
@@ -4488,8 +4485,7 @@ declare module INSPECTOR {
|
|
|
4488
4485
|
|
|
4489
4486
|
}
|
|
4490
4487
|
declare module INSPECTOR.SharedUIComponents {
|
|
4491
|
-
|
|
4492
|
-
export class GraphNode {
|
|
4488
|
+
export class GraphNode {
|
|
4493
4489
|
content: INSPECTOR.SharedUIComponents.INodeData;
|
|
4494
4490
|
private _visual;
|
|
4495
4491
|
private _headerContainer;
|
|
@@ -5946,7 +5942,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
5946
5942
|
syncPositions(): void;
|
|
5947
5943
|
shouldComponentUpdate(nextProps: IColorPickerLineProps, nextState: IColorPickerComponentState): boolean;
|
|
5948
5944
|
getHexString(props?: Readonly<IColorPickerLineProps> & Readonly<{
|
|
5949
|
-
children?: React.ReactNode;
|
|
5945
|
+
children?: React.ReactNode | undefined;
|
|
5950
5946
|
}>): string;
|
|
5951
5947
|
componentDidUpdate(): void;
|
|
5952
5948
|
componentDidMount(): void;
|
|
@@ -5981,7 +5977,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
5981
5977
|
constructor(props: IColorLineProps);
|
|
5982
5978
|
shouldComponentUpdate(nextProps: IColorLineProps, nextState: IColorLineComponentState): boolean;
|
|
5983
5979
|
getValue(props?: Readonly<IColorLineProps> & Readonly<{
|
|
5984
|
-
children?: React.ReactNode;
|
|
5980
|
+
children?: React.ReactNode | undefined;
|
|
5985
5981
|
}>): BABYLON.Color4;
|
|
5986
5982
|
setColorFromString(colorString: string): void;
|
|
5987
5983
|
setColor(newColor: BABYLON.Color4): void;
|
|
@@ -6142,8 +6138,7 @@ declare module INSPECTOR {
|
|
|
6142
6138
|
|
|
6143
6139
|
}
|
|
6144
6140
|
declare module INSPECTOR.SharedUIComponents {
|
|
6145
|
-
|
|
6146
|
-
export type ToggleProps = {
|
|
6141
|
+
export type ToggleProps = {
|
|
6147
6142
|
toggled: "on" | "mixed" | "off";
|
|
6148
6143
|
onToggle?: () => void;
|
|
6149
6144
|
padded?: boolean;
|
|
@@ -6211,8 +6206,7 @@ declare module INSPECTOR {
|
|
|
6211
6206
|
|
|
6212
6207
|
}
|
|
6213
6208
|
declare module INSPECTOR.SharedUIComponents {
|
|
6214
|
-
|
|
6215
|
-
export type IconProps = {
|
|
6209
|
+
export type IconProps = {
|
|
6216
6210
|
color?: "dark" | "light";
|
|
6217
6211
|
icon: string;
|
|
6218
6212
|
};
|
|
@@ -6226,8 +6220,7 @@ declare module INSPECTOR {
|
|
|
6226
6220
|
|
|
6227
6221
|
}
|
|
6228
6222
|
declare module INSPECTOR.SharedUIComponents {
|
|
6229
|
-
|
|
6230
|
-
export type ButtonProps = {
|
|
6223
|
+
export type ButtonProps = {
|
|
6231
6224
|
disabled?: boolean;
|
|
6232
6225
|
active?: boolean;
|
|
6233
6226
|
onClick?: () => void;
|
|
@@ -6450,8 +6443,7 @@ declare module INSPECTOR {
|
|
|
6450
6443
|
|
|
6451
6444
|
}
|
|
6452
6445
|
declare module INSPECTOR.SharedUIComponents {
|
|
6453
|
-
|
|
6454
|
-
/**
|
|
6446
|
+
/**
|
|
6455
6447
|
* this context is used to pass callbacks to the graph nodes and connections
|
|
6456
6448
|
*/
|
|
6457
6449
|
export interface IGraphContext {
|
|
@@ -6652,7 +6644,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
6652
6644
|
syncPositions(): void;
|
|
6653
6645
|
shouldComponentUpdate(nextProps: IColorPickerLineComponentProps, nextState: IColorPickerComponentState): boolean;
|
|
6654
6646
|
getHexString(props?: Readonly<IColorPickerLineComponentProps> & Readonly<{
|
|
6655
|
-
children?: React.ReactNode;
|
|
6647
|
+
children?: React.ReactNode | undefined;
|
|
6656
6648
|
}>): string;
|
|
6657
6649
|
componentDidUpdate(): void;
|
|
6658
6650
|
componentDidMount(): void;
|
|
@@ -6687,7 +6679,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
6687
6679
|
constructor(props: IColorLineComponentProps);
|
|
6688
6680
|
shouldComponentUpdate(nextProps: IColorLineComponentProps, nextState: IColorLineComponentState): boolean;
|
|
6689
6681
|
getValue(props?: Readonly<IColorLineComponentProps> & Readonly<{
|
|
6690
|
-
children?: React.ReactNode;
|
|
6682
|
+
children?: React.ReactNode | undefined;
|
|
6691
6683
|
}>): BABYLON.Color4;
|
|
6692
6684
|
setColorFromString(colorString: string): void;
|
|
6693
6685
|
setColor(newColor: BABYLON.Color4): void;
|
|
@@ -6837,8 +6829,7 @@ declare module INSPECTOR {
|
|
|
6837
6829
|
|
|
6838
6830
|
}
|
|
6839
6831
|
declare module INSPECTOR.SharedUIComponents {
|
|
6840
|
-
|
|
6841
|
-
export var LayoutContext: import("react").Context<{
|
|
6832
|
+
export var LayoutContext: import("react").Context<{
|
|
6842
6833
|
/**
|
|
6843
6834
|
* The layout object
|
|
6844
6835
|
*/
|
|
@@ -5104,7 +5104,6 @@ export {};
|
|
|
5104
5104
|
|
|
5105
5105
|
}
|
|
5106
5106
|
declare module "babylonjs-inspector/split/splitter" {
|
|
5107
|
-
/// <reference types="react" />
|
|
5108
5107
|
import { ControlledSize } from "babylonjs-inspector/split/splitContext";
|
|
5109
5108
|
/**
|
|
5110
5109
|
* Splitter component properties
|
|
@@ -5148,7 +5147,6 @@ export const Splitter: React.FC<ISplitterProps>;
|
|
|
5148
5147
|
|
|
5149
5148
|
}
|
|
5150
5149
|
declare module "babylonjs-inspector/split/splitContext" {
|
|
5151
|
-
/// <reference types="react" />
|
|
5152
5150
|
export enum ControlledSize {
|
|
5153
5151
|
First = 0,
|
|
5154
5152
|
Second = 1
|
|
@@ -5194,7 +5192,6 @@ export const SplitContext: import("react").Context<ISplitContext>;
|
|
|
5194
5192
|
|
|
5195
5193
|
}
|
|
5196
5194
|
declare module "babylonjs-inspector/split/splitContainer" {
|
|
5197
|
-
/// <reference types="react" />
|
|
5198
5195
|
import { SplitDirection } from "babylonjs-inspector/split/splitContext";
|
|
5199
5196
|
/**
|
|
5200
5197
|
* Split container properties
|
|
@@ -5315,8 +5312,8 @@ export class StateManager {
|
|
|
5315
5312
|
type: string;
|
|
5316
5313
|
targetX: number;
|
|
5317
5314
|
targetY: number;
|
|
5318
|
-
needRepositioning?: boolean
|
|
5319
|
-
smartAdd?: boolean
|
|
5315
|
+
needRepositioning?: boolean;
|
|
5316
|
+
smartAdd?: boolean;
|
|
5320
5317
|
}>;
|
|
5321
5318
|
onHighlightNodeObservable: Observable<{
|
|
5322
5319
|
data: any;
|
|
@@ -5463,7 +5460,6 @@ export class NodeLedger {
|
|
|
5463
5460
|
|
|
5464
5461
|
}
|
|
5465
5462
|
declare module "babylonjs-inspector/nodeGraphSystem/graphNode" {
|
|
5466
|
-
/// <reference types="react" />
|
|
5467
5463
|
import { Nullable } from "babylonjs/types";
|
|
5468
5464
|
import { GraphCanvasComponent } from "babylonjs-inspector/nodeGraphSystem/graphCanvas";
|
|
5469
5465
|
import { NodePort } from "babylonjs-inspector/nodeGraphSystem/nodePort";
|
|
@@ -6813,7 +6809,7 @@ export class ColorPickerLine extends React.Component<IColorPickerLineProps, ICol
|
|
|
6813
6809
|
syncPositions(): void;
|
|
6814
6810
|
shouldComponentUpdate(nextProps: IColorPickerLineProps, nextState: IColorPickerComponentState): boolean;
|
|
6815
6811
|
getHexString(props?: Readonly<IColorPickerLineProps> & Readonly<{
|
|
6816
|
-
children?: React.ReactNode;
|
|
6812
|
+
children?: React.ReactNode | undefined;
|
|
6817
6813
|
}>): string;
|
|
6818
6814
|
componentDidUpdate(): void;
|
|
6819
6815
|
componentDidMount(): void;
|
|
@@ -6848,7 +6844,7 @@ export class ColorLine extends React.Component<IColorLineProps, IColorLineCompon
|
|
|
6848
6844
|
constructor(props: IColorLineProps);
|
|
6849
6845
|
shouldComponentUpdate(nextProps: IColorLineProps, nextState: IColorLineComponentState): boolean;
|
|
6850
6846
|
getValue(props?: Readonly<IColorLineProps> & Readonly<{
|
|
6851
|
-
children?: React.ReactNode;
|
|
6847
|
+
children?: React.ReactNode | undefined;
|
|
6852
6848
|
}>): Color4;
|
|
6853
6849
|
setColorFromString(colorString: string): void;
|
|
6854
6850
|
setColor(newColor: Color4): void;
|
|
@@ -6982,7 +6978,6 @@ export function JoinClassNames(styleObject: any, ...names: string[]): string;
|
|
|
6982
6978
|
|
|
6983
6979
|
}
|
|
6984
6980
|
declare module "babylonjs-inspector/components/Toggle" {
|
|
6985
|
-
/// <reference types="react" />
|
|
6986
6981
|
export type ToggleProps = {
|
|
6987
6982
|
toggled: "on" | "mixed" | "off";
|
|
6988
6983
|
onToggle?: () => void;
|
|
@@ -7029,7 +7024,6 @@ export const Label: React.FC<LabelProps>;
|
|
|
7029
7024
|
|
|
7030
7025
|
}
|
|
7031
7026
|
declare module "babylonjs-inspector/components/Icon" {
|
|
7032
|
-
/// <reference types="react" />
|
|
7033
7027
|
export type IconProps = {
|
|
7034
7028
|
color?: "dark" | "light";
|
|
7035
7029
|
icon: string;
|
|
@@ -7038,7 +7032,6 @@ export const Icon: React.FC<IconProps>;
|
|
|
7038
7032
|
|
|
7039
7033
|
}
|
|
7040
7034
|
declare module "babylonjs-inspector/components/Button" {
|
|
7041
|
-
/// <reference types="react" />
|
|
7042
7035
|
export type ButtonProps = {
|
|
7043
7036
|
disabled?: boolean;
|
|
7044
7037
|
active?: boolean;
|
|
@@ -7226,7 +7219,6 @@ export const GraphLine: FC<IGraphLineProps>;
|
|
|
7226
7219
|
|
|
7227
7220
|
}
|
|
7228
7221
|
declare module "babylonjs-inspector/components/reactGraphSystem/GraphContextManager" {
|
|
7229
|
-
/// <reference types="react" />
|
|
7230
7222
|
/**
|
|
7231
7223
|
* this context is used to pass callbacks to the graph nodes and connections
|
|
7232
7224
|
*/
|
|
@@ -7401,7 +7393,7 @@ export class ColorPickerLineComponent extends React.Component<IColorPickerLineCo
|
|
|
7401
7393
|
syncPositions(): void;
|
|
7402
7394
|
shouldComponentUpdate(nextProps: IColorPickerLineComponentProps, nextState: IColorPickerComponentState): boolean;
|
|
7403
7395
|
getHexString(props?: Readonly<IColorPickerLineComponentProps> & Readonly<{
|
|
7404
|
-
children?: React.ReactNode;
|
|
7396
|
+
children?: React.ReactNode | undefined;
|
|
7405
7397
|
}>): string;
|
|
7406
7398
|
componentDidUpdate(): void;
|
|
7407
7399
|
componentDidMount(): void;
|
|
@@ -7436,7 +7428,7 @@ export class ColorLineComponent extends React.Component<IColorLineComponentProps
|
|
|
7436
7428
|
constructor(props: IColorLineComponentProps);
|
|
7437
7429
|
shouldComponentUpdate(nextProps: IColorLineComponentProps, nextState: IColorLineComponentState): boolean;
|
|
7438
7430
|
getValue(props?: Readonly<IColorLineComponentProps> & Readonly<{
|
|
7439
|
-
children?: React.ReactNode;
|
|
7431
|
+
children?: React.ReactNode | undefined;
|
|
7440
7432
|
}>): Color4;
|
|
7441
7433
|
setColorFromString(colorString: string): void;
|
|
7442
7434
|
setColor(newColor: Color4): void;
|
|
@@ -7571,7 +7563,6 @@ export enum ResizeDirections {
|
|
|
7571
7563
|
|
|
7572
7564
|
}
|
|
7573
7565
|
declare module "babylonjs-inspector/components/layout/LayoutContext" {
|
|
7574
|
-
/// <reference types="react" />
|
|
7575
7566
|
import { Layout } from "babylonjs-inspector/components/layout/types";
|
|
7576
7567
|
export const LayoutContext: import("react").Context<{
|
|
7577
7568
|
/**
|
|
@@ -12186,8 +12177,7 @@ declare module INSPECTOR {
|
|
|
12186
12177
|
|
|
12187
12178
|
}
|
|
12188
12179
|
declare module INSPECTOR.SharedUIComponents {
|
|
12189
|
-
|
|
12190
|
-
/**
|
|
12180
|
+
/**
|
|
12191
12181
|
* Splitter component properties
|
|
12192
12182
|
*/
|
|
12193
12183
|
export interface ISplitterProps {
|
|
@@ -12235,8 +12225,7 @@ declare module INSPECTOR {
|
|
|
12235
12225
|
|
|
12236
12226
|
}
|
|
12237
12227
|
declare module INSPECTOR.SharedUIComponents {
|
|
12238
|
-
|
|
12239
|
-
export enum ControlledSize {
|
|
12228
|
+
export enum ControlledSize {
|
|
12240
12229
|
First = 0,
|
|
12241
12230
|
Second = 1
|
|
12242
12231
|
}
|
|
@@ -12287,8 +12276,7 @@ declare module INSPECTOR {
|
|
|
12287
12276
|
|
|
12288
12277
|
}
|
|
12289
12278
|
declare module INSPECTOR.SharedUIComponents {
|
|
12290
|
-
|
|
12291
|
-
/**
|
|
12279
|
+
/**
|
|
12292
12280
|
* Split container properties
|
|
12293
12281
|
*/
|
|
12294
12282
|
export interface ISplitContainerProps {
|
|
@@ -12404,8 +12392,8 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12404
12392
|
type: string;
|
|
12405
12393
|
targetX: number;
|
|
12406
12394
|
targetY: number;
|
|
12407
|
-
needRepositioning?: boolean
|
|
12408
|
-
smartAdd?: boolean
|
|
12395
|
+
needRepositioning?: boolean;
|
|
12396
|
+
smartAdd?: boolean;
|
|
12409
12397
|
}>;
|
|
12410
12398
|
onHighlightNodeObservable: BABYLON.Observable<{
|
|
12411
12399
|
data: any;
|
|
@@ -12569,8 +12557,7 @@ declare module INSPECTOR {
|
|
|
12569
12557
|
|
|
12570
12558
|
}
|
|
12571
12559
|
declare module INSPECTOR.SharedUIComponents {
|
|
12572
|
-
|
|
12573
|
-
export class GraphNode {
|
|
12560
|
+
export class GraphNode {
|
|
12574
12561
|
content: INSPECTOR.SharedUIComponents.INodeData;
|
|
12575
12562
|
private _visual;
|
|
12576
12563
|
private _headerContainer;
|
|
@@ -14027,7 +14014,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14027
14014
|
syncPositions(): void;
|
|
14028
14015
|
shouldComponentUpdate(nextProps: IColorPickerLineProps, nextState: IColorPickerComponentState): boolean;
|
|
14029
14016
|
getHexString(props?: Readonly<IColorPickerLineProps> & Readonly<{
|
|
14030
|
-
children?: React.ReactNode;
|
|
14017
|
+
children?: React.ReactNode | undefined;
|
|
14031
14018
|
}>): string;
|
|
14032
14019
|
componentDidUpdate(): void;
|
|
14033
14020
|
componentDidMount(): void;
|
|
@@ -14062,7 +14049,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14062
14049
|
constructor(props: IColorLineProps);
|
|
14063
14050
|
shouldComponentUpdate(nextProps: IColorLineProps, nextState: IColorLineComponentState): boolean;
|
|
14064
14051
|
getValue(props?: Readonly<IColorLineProps> & Readonly<{
|
|
14065
|
-
children?: React.ReactNode;
|
|
14052
|
+
children?: React.ReactNode | undefined;
|
|
14066
14053
|
}>): BABYLON.Color4;
|
|
14067
14054
|
setColorFromString(colorString: string): void;
|
|
14068
14055
|
setColor(newColor: BABYLON.Color4): void;
|
|
@@ -14223,8 +14210,7 @@ declare module INSPECTOR {
|
|
|
14223
14210
|
|
|
14224
14211
|
}
|
|
14225
14212
|
declare module INSPECTOR.SharedUIComponents {
|
|
14226
|
-
|
|
14227
|
-
export type ToggleProps = {
|
|
14213
|
+
export type ToggleProps = {
|
|
14228
14214
|
toggled: "on" | "mixed" | "off";
|
|
14229
14215
|
onToggle?: () => void;
|
|
14230
14216
|
padded?: boolean;
|
|
@@ -14292,8 +14278,7 @@ declare module INSPECTOR {
|
|
|
14292
14278
|
|
|
14293
14279
|
}
|
|
14294
14280
|
declare module INSPECTOR.SharedUIComponents {
|
|
14295
|
-
|
|
14296
|
-
export type IconProps = {
|
|
14281
|
+
export type IconProps = {
|
|
14297
14282
|
color?: "dark" | "light";
|
|
14298
14283
|
icon: string;
|
|
14299
14284
|
};
|
|
@@ -14307,8 +14292,7 @@ declare module INSPECTOR {
|
|
|
14307
14292
|
|
|
14308
14293
|
}
|
|
14309
14294
|
declare module INSPECTOR.SharedUIComponents {
|
|
14310
|
-
|
|
14311
|
-
export type ButtonProps = {
|
|
14295
|
+
export type ButtonProps = {
|
|
14312
14296
|
disabled?: boolean;
|
|
14313
14297
|
active?: boolean;
|
|
14314
14298
|
onClick?: () => void;
|
|
@@ -14531,8 +14515,7 @@ declare module INSPECTOR {
|
|
|
14531
14515
|
|
|
14532
14516
|
}
|
|
14533
14517
|
declare module INSPECTOR.SharedUIComponents {
|
|
14534
|
-
|
|
14535
|
-
/**
|
|
14518
|
+
/**
|
|
14536
14519
|
* this context is used to pass callbacks to the graph nodes and connections
|
|
14537
14520
|
*/
|
|
14538
14521
|
export interface IGraphContext {
|
|
@@ -14733,7 +14716,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14733
14716
|
syncPositions(): void;
|
|
14734
14717
|
shouldComponentUpdate(nextProps: IColorPickerLineComponentProps, nextState: IColorPickerComponentState): boolean;
|
|
14735
14718
|
getHexString(props?: Readonly<IColorPickerLineComponentProps> & Readonly<{
|
|
14736
|
-
children?: React.ReactNode;
|
|
14719
|
+
children?: React.ReactNode | undefined;
|
|
14737
14720
|
}>): string;
|
|
14738
14721
|
componentDidUpdate(): void;
|
|
14739
14722
|
componentDidMount(): void;
|
|
@@ -14768,7 +14751,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14768
14751
|
constructor(props: IColorLineComponentProps);
|
|
14769
14752
|
shouldComponentUpdate(nextProps: IColorLineComponentProps, nextState: IColorLineComponentState): boolean;
|
|
14770
14753
|
getValue(props?: Readonly<IColorLineComponentProps> & Readonly<{
|
|
14771
|
-
children?: React.ReactNode;
|
|
14754
|
+
children?: React.ReactNode | undefined;
|
|
14772
14755
|
}>): BABYLON.Color4;
|
|
14773
14756
|
setColorFromString(colorString: string): void;
|
|
14774
14757
|
setColor(newColor: BABYLON.Color4): void;
|
|
@@ -14918,8 +14901,7 @@ declare module INSPECTOR {
|
|
|
14918
14901
|
|
|
14919
14902
|
}
|
|
14920
14903
|
declare module INSPECTOR.SharedUIComponents {
|
|
14921
|
-
|
|
14922
|
-
export var LayoutContext: import("react").Context<{
|
|
14904
|
+
export var LayoutContext: import("react").Context<{
|
|
14923
14905
|
/**
|
|
14924
14906
|
* The layout object
|
|
14925
14907
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-inspector",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.35.0",
|
|
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.
|
|
18
|
-
"babylonjs-gui": "^7.
|
|
19
|
-
"babylonjs-gui-editor": "^7.
|
|
20
|
-
"babylonjs-loaders": "^7.
|
|
21
|
-
"babylonjs-materials": "^7.
|
|
22
|
-
"babylonjs-serializers": "^7.
|
|
17
|
+
"babylonjs": "^7.35.0",
|
|
18
|
+
"babylonjs-gui": "^7.35.0",
|
|
19
|
+
"babylonjs-gui-editor": "^7.35.0",
|
|
20
|
+
"babylonjs-loaders": "^7.35.0",
|
|
21
|
+
"babylonjs-materials": "^7.35.0",
|
|
22
|
+
"babylonjs-serializers": "^7.35.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@dev/build-tools": "1.0.0",
|