@babylonjs/inspector 7.45.0 → 7.47.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -3290,6 +3290,27 @@ export class SpotLightPropertyGridComponent extends React.Component<ISpotLightPr
|
|
3290
3290
|
}
|
3291
3291
|
export {};
|
3292
3292
|
|
3293
|
+
}
|
3294
|
+
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/lights/rectAreaLightPropertyGridComponent" {
|
3295
|
+
import * as React from "react";
|
3296
|
+
import { Observable } from "@babylonjs/core/Misc/observable";
|
3297
|
+
import { RectAreaLight } from "@babylonjs/core/Lights/rectAreaLight";
|
3298
|
+
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3299
|
+
import { LockObject } from "@babylonjs/inspector/tabs/propertyGrids/lockObject";
|
3300
|
+
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3301
|
+
interface IRectAreaLightPropertyGridComponentProps {
|
3302
|
+
globalState: GlobalState;
|
3303
|
+
light: RectAreaLight;
|
3304
|
+
lockObject: LockObject;
|
3305
|
+
onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
3306
|
+
onSelectionChangedObservable?: Observable<any>;
|
3307
|
+
}
|
3308
|
+
export class RectAreaLightPropertyGridComponent extends React.Component<IRectAreaLightPropertyGridComponentProps> {
|
3309
|
+
constructor(props: IRectAreaLightPropertyGridComponentProps);
|
3310
|
+
|
3311
|
+
}
|
3312
|
+
export {};
|
3313
|
+
|
3293
3314
|
}
|
3294
3315
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/lights/pointLightPropertyGridComponent" {
|
3295
3316
|
import * as React from "react";
|
@@ -5336,6 +5357,8 @@ export class StateManager {
|
|
5336
5357
|
data: INodeData;
|
5337
5358
|
name: string;
|
5338
5359
|
}>;
|
5360
|
+
private _isRebuildQueued;
|
5361
|
+
queueRebuildCommand(): void;
|
5339
5362
|
}
|
5340
5363
|
|
5341
5364
|
}
|
@@ -6040,6 +6063,9 @@ export interface INodeData {
|
|
6040
6063
|
outputs: IPortData[];
|
6041
6064
|
invisibleEndpoints?: Nullable<any[]>;
|
6042
6065
|
isConnectedToOutput?: () => boolean;
|
6066
|
+
isActive?: boolean;
|
6067
|
+
setIsActive?: (value: boolean) => void;
|
6068
|
+
canBeActivated?: boolean;
|
6043
6069
|
}
|
6044
6070
|
|
6045
6071
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.47.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": "^7.
|
36
|
-
"@babylonjs/gui": "^7.
|
37
|
-
"@babylonjs/gui-editor": "^7.
|
38
|
-
"@babylonjs/loaders": "^7.
|
39
|
-
"@babylonjs/materials": "^7.
|
40
|
-
"@babylonjs/serializers": "^7.
|
35
|
+
"@babylonjs/core": "^7.47.0",
|
36
|
+
"@babylonjs/gui": "^7.47.0",
|
37
|
+
"@babylonjs/gui-editor": "^7.47.0",
|
38
|
+
"@babylonjs/loaders": "^7.47.0",
|
39
|
+
"@babylonjs/materials": "^7.47.0",
|
40
|
+
"@babylonjs/serializers": "^7.47.0",
|
41
41
|
"@lts/gui": "1.0.0",
|
42
42
|
"react": "^17.0.2",
|
43
43
|
"react-dom": "^17.0.2"
|