@babylonjs/inspector 5.0.0-alpha.59 → 5.0.0-alpha.62
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.bundle.max.js +1643 -1391
- package/babylon.inspector.bundle.max.js.map +1 -1
- package/babylon.inspector.module.d.ts +170 -127
- package/package.json +7 -7
@@ -536,11 +536,11 @@ declare module "@babylonjs/inspector/components/graph/canvasGraphService" {
|
|
536
536
|
}
|
537
537
|
}
|
538
538
|
declare module "@babylonjs/inspector/components/graph/canvasGraphComponent" {
|
539
|
-
import { PerformanceViewerCollector } from
|
540
|
-
import { Observable } from
|
541
|
-
import * as React from
|
539
|
+
import { PerformanceViewerCollector } from "@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector";
|
540
|
+
import { Observable } from "@babylonjs/core/Misc/observable";
|
541
|
+
import * as React from "react";
|
542
542
|
import { IPerfLayoutSize } from "@babylonjs/inspector/components/graph/graphSupportingTypes";
|
543
|
-
import { Scene } from
|
543
|
+
import { Scene } from "@babylonjs/core/scene";
|
544
544
|
interface ICanvasGraphComponentProps {
|
545
545
|
id: string;
|
546
546
|
scene: Scene;
|
@@ -657,7 +657,7 @@ declare module "@babylonjs/inspector/sharedUiComponents/colorPicker/colorPicker"
|
|
657
657
|
}
|
658
658
|
declare module "@babylonjs/inspector/sharedUiComponents/lines/colorPickerComponent" {
|
659
659
|
import * as React from "react";
|
660
|
-
import { Color4, Color3 } from
|
660
|
+
import { Color4, Color3 } from "@babylonjs/core/Maths/math.color";
|
661
661
|
export interface IColorPickerComponentProps {
|
662
662
|
value: Color4 | Color3;
|
663
663
|
linearHint?: boolean;
|
@@ -683,15 +683,15 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/colorPickerCompone
|
|
683
683
|
}
|
684
684
|
}
|
685
685
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewer/performanceViewerSidebarComponent" {
|
686
|
-
import { PerformanceViewerCollector } from
|
686
|
+
import { PerformanceViewerCollector } from "@babylonjs/core/Misc/PerformanceViewer/performanceViewerCollector";
|
687
687
|
interface IPerformanceViewerSidebarComponentProps {
|
688
688
|
collector: PerformanceViewerCollector;
|
689
689
|
}
|
690
690
|
export const PerformanceViewerSidebarComponent: (props: IPerformanceViewerSidebarComponentProps) => JSX.Element;
|
691
691
|
}
|
692
692
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewer/performancePlayheadButtonComponent" {
|
693
|
-
import { Observable } from
|
694
|
-
import * as React from
|
693
|
+
import { Observable } from "@babylonjs/core/Misc/observable";
|
694
|
+
import * as React from "react";
|
695
695
|
interface IPerformancePlayheadButtonProps {
|
696
696
|
returnToPlayhead: Observable<void>;
|
697
697
|
}
|
@@ -700,7 +700,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewe
|
|
700
700
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/performanceViewer/performanceViewerComponent" {
|
701
701
|
import { Scene } from "@babylonjs/core/scene";
|
702
702
|
import * as React from "react";
|
703
|
-
import
|
703
|
+
import "@babylonjs/core/Misc/PerformanceViewer/performanceViewerSceneExtension";
|
704
704
|
interface IPerformanceViewerComponentProps {
|
705
705
|
scene: Scene;
|
706
706
|
}
|
@@ -971,7 +971,7 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/color3LineComponen
|
|
971
971
|
import * as React from "react";
|
972
972
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
973
973
|
import { PropertyChangedEvent } from "@babylonjs/inspector/sharedUiComponents/propertyChangedEvent";
|
974
|
-
import { Color3 } from
|
974
|
+
import { Color3, Color4 } from "@babylonjs/core/Maths/math.color";
|
975
975
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
976
976
|
export interface IColor3LineComponentProps {
|
977
977
|
label: string;
|
@@ -982,25 +982,31 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/color3LineComponen
|
|
982
982
|
icon?: string;
|
983
983
|
lockObject?: LockObject;
|
984
984
|
iconLabel?: string;
|
985
|
+
onValueChange?: (value: string) => void;
|
985
986
|
}
|
986
987
|
export class Color3LineComponent extends React.Component<IColor3LineComponentProps, {
|
987
988
|
isExpanded: boolean;
|
988
|
-
color: Color3;
|
989
|
+
color: Color3 | Color4;
|
990
|
+
colorText: string;
|
989
991
|
}> {
|
990
992
|
private _localChange;
|
991
993
|
constructor(props: IColor3LineComponentProps);
|
994
|
+
private convertToColor3;
|
992
995
|
shouldComponentUpdate(nextProps: IColor3LineComponentProps, nextState: {
|
993
|
-
color: Color3;
|
996
|
+
color: Color3 | Color4;
|
997
|
+
colorText: string;
|
994
998
|
}): boolean;
|
995
|
-
setPropertyValue(newColor: Color3): void;
|
999
|
+
setPropertyValue(newColor: Color3 | Color4, newColorText: string): void;
|
996
1000
|
onChange(newValue: string): void;
|
997
1001
|
switchExpandState(): void;
|
998
|
-
raiseOnPropertyChanged(previousValue: Color3): void;
|
1002
|
+
raiseOnPropertyChanged(previousValue: Color3 | Color4): void;
|
999
1003
|
updateStateR(value: number): void;
|
1000
1004
|
updateStateG(value: number): void;
|
1001
1005
|
updateStateB(value: number): void;
|
1002
1006
|
copyToClipboard(): void;
|
1003
1007
|
convert(colorString: string): void;
|
1008
|
+
private _colorStringSaved;
|
1009
|
+
private _colorPickerOpen;
|
1004
1010
|
private _colorString;
|
1005
1011
|
render(): JSX.Element;
|
1006
1012
|
}
|
@@ -1089,7 +1095,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/cu
|
|
1089
1095
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
1090
1096
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
1091
1097
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
1092
|
-
import { IInspectable } from
|
1098
|
+
import { IInspectable } from "@babylonjs/core/Misc/iInspectable";
|
1093
1099
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
1094
1100
|
interface ICustomPropertyGridComponentProps {
|
1095
1101
|
globalState: GlobalState;
|
@@ -1107,6 +1113,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/cu
|
|
1107
1113
|
}
|
1108
1114
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/graph/curve" {
|
1109
1115
|
import { Animation } from "@babylonjs/core/Animations/animation";
|
1116
|
+
import { AnimationKeyInterpolation } from "@babylonjs/core/Animations/animationKey";
|
1110
1117
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
1111
1118
|
export interface KeyEntry {
|
1112
1119
|
frame: number;
|
@@ -1114,6 +1121,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1114
1121
|
inTangent?: number;
|
1115
1122
|
outTangent?: number;
|
1116
1123
|
lockedTangent: boolean;
|
1124
|
+
interpolation?: AnimationKeyInterpolation;
|
1117
1125
|
}
|
1118
1126
|
export class Curve {
|
1119
1127
|
static readonly SampleRate: number;
|
@@ -1127,11 +1135,14 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1127
1135
|
setDefaultOutTangent?: (keyId: number) => any;
|
1128
1136
|
static readonly TangentLength: number;
|
1129
1137
|
constructor(color: string, animation: Animation, property?: string, tangentBuilder?: () => any, setDefaultInTangent?: (keyId: number) => any, setDefaultOutTangent?: (keyId: number) => any);
|
1130
|
-
|
1138
|
+
getPathData(convertX: (x: number) => number, convertY: (y: number) => number): string;
|
1131
1139
|
updateLockedTangentMode(keyIndex: number, enabled: boolean): void;
|
1132
|
-
|
1133
|
-
|
1140
|
+
updateInterpolationMode(keyIndex: number, interpolationMode: AnimationKeyInterpolation): void;
|
1141
|
+
getInControlPoint(keyIndex: number): number | undefined;
|
1142
|
+
getOutControlPoint(keyIndex: number): number | undefined;
|
1143
|
+
hasDefinedOutTangent(keyIndex: number): boolean;
|
1134
1144
|
evaluateOutTangent(keyIndex: number): number;
|
1145
|
+
hasDefinedInTangent(keyIndex: number): boolean;
|
1135
1146
|
evaluateInTangent(keyIndex: number): number;
|
1136
1147
|
storeDefaultInTangent(keyIndex: number): void;
|
1137
1148
|
storeDefaultOutTangent(keyIndex: number): void;
|
@@ -1187,6 +1198,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1187
1198
|
private _onLinearTangentRequiredObserver;
|
1188
1199
|
private _onBreakTangentRequiredObserver;
|
1189
1200
|
private _onUnifyTangentRequiredObserver;
|
1201
|
+
private _onStepTangentRequiredObserver;
|
1190
1202
|
private _onSelectAllKeysObserver;
|
1191
1203
|
private _pointerIsDown;
|
1192
1204
|
private _sourcePointerX;
|
@@ -1211,6 +1223,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1211
1223
|
private _unifyTangent;
|
1212
1224
|
private _flattenTangent;
|
1213
1225
|
private _linearTangent;
|
1226
|
+
private _stepTangent;
|
1214
1227
|
private _select;
|
1215
1228
|
private _onPointerDown;
|
1216
1229
|
private _extractSlope;
|
@@ -1228,6 +1241,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1228
1241
|
import { Scene } from "@babylonjs/core/scene";
|
1229
1242
|
import { IAnimatable } from "@babylonjs/core/Animations/animatable.interface";
|
1230
1243
|
import { AnimationGroup, TargetedAnimation } from "@babylonjs/core/Animations/animationGroup";
|
1244
|
+
import { AnimationKeyInterpolation } from "@babylonjs/core/Animations/animationKey";
|
1231
1245
|
export class Context {
|
1232
1246
|
title: string;
|
1233
1247
|
animations: Nullable<Animation[] | TargetedAnimation[]>;
|
@@ -1247,8 +1261,10 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1247
1261
|
toKey: number;
|
1248
1262
|
forwardAnimation: boolean;
|
1249
1263
|
isPlaying: boolean;
|
1264
|
+
clipLength: number;
|
1250
1265
|
referenceMinFrame: number;
|
1251
1266
|
referenceMaxFrame: number;
|
1267
|
+
focusedInput: boolean;
|
1252
1268
|
onActiveAnimationChanged: Observable<void>;
|
1253
1269
|
onActiveKeyPointChanged: Observable<void>;
|
1254
1270
|
onHostWindowResized: Observable<void>;
|
@@ -1261,11 +1277,12 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1261
1277
|
onValueSet: Observable<number>;
|
1262
1278
|
onValueManuallyEntered: Observable<number>;
|
1263
1279
|
onFrameRequired: Observable<void>;
|
1264
|
-
|
1280
|
+
onCreateOrUpdateKeyPointRequired: Observable<void>;
|
1265
1281
|
onFlattenTangentRequired: Observable<void>;
|
1266
1282
|
onLinearTangentRequired: Observable<void>;
|
1267
1283
|
onBreakTangentRequired: Observable<void>;
|
1268
1284
|
onUnifyTangentRequired: Observable<void>;
|
1285
|
+
onStepTangentRequired: Observable<void>;
|
1269
1286
|
onDeleteAnimation: Observable<Animation>;
|
1270
1287
|
onGraphMoved: Observable<number>;
|
1271
1288
|
onGraphScaled: Observable<number>;
|
@@ -1277,6 +1294,12 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1277
1294
|
onAnimationsLoaded: Observable<void>;
|
1278
1295
|
onEditAnimationRequired: Observable<Animation>;
|
1279
1296
|
onEditAnimationUIClosed: Observable<void>;
|
1297
|
+
onClipLengthIncreased: Observable<number>;
|
1298
|
+
onClipLengthDecreased: Observable<number>;
|
1299
|
+
onInterpolationModeSet: Observable<{
|
1300
|
+
keyId: number;
|
1301
|
+
value: AnimationKeyInterpolation;
|
1302
|
+
}>;
|
1280
1303
|
onSelectToActivated: Observable<{
|
1281
1304
|
from: number;
|
1282
1305
|
to: number;
|
@@ -1293,6 +1316,47 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1293
1316
|
getActiveChannel(animation: Animation): string;
|
1294
1317
|
resetAllActiveChannels(): void;
|
1295
1318
|
getAnimationSortIndex(animation: Animation): number;
|
1319
|
+
getPrevKey(): Nullable<number>;
|
1320
|
+
getNextKey(): Nullable<number>;
|
1321
|
+
/**
|
1322
|
+
* If any current active animation has a key at the received frameNumber,
|
1323
|
+
* return the index of the animation in the active animation array, and
|
1324
|
+
* the index of the frame on the animation.
|
1325
|
+
*/
|
1326
|
+
getKeyAtAnyFrameIndex(frameNumber: number): {
|
1327
|
+
animationIndex: number;
|
1328
|
+
keyIndex: number;
|
1329
|
+
} | null;
|
1330
|
+
}
|
1331
|
+
}
|
1332
|
+
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/controls/textInputComponent" {
|
1333
|
+
import * as React from "react";
|
1334
|
+
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
1335
|
+
import { Context } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/context";
|
1336
|
+
interface ITextInputComponentProps {
|
1337
|
+
globalState: GlobalState;
|
1338
|
+
context: Context;
|
1339
|
+
id?: string;
|
1340
|
+
className?: string;
|
1341
|
+
tooltip?: string;
|
1342
|
+
value: string;
|
1343
|
+
isNumber?: boolean;
|
1344
|
+
complement?: string;
|
1345
|
+
onValueAsNumberChanged?: (value: number, isFocused: boolean) => void;
|
1346
|
+
}
|
1347
|
+
interface ITextInputComponentState {
|
1348
|
+
value: string;
|
1349
|
+
isFocused: boolean;
|
1350
|
+
}
|
1351
|
+
export class TextInputComponent extends React.Component<ITextInputComponentProps, ITextInputComponentState> {
|
1352
|
+
private _lastKnownGoodValue;
|
1353
|
+
constructor(props: ITextInputComponentProps);
|
1354
|
+
private _onChange;
|
1355
|
+
private _onBlur;
|
1356
|
+
private _onFocus;
|
1357
|
+
shouldComponentUpdate(newProps: ITextInputComponentProps, newState: ITextInputComponentState): boolean;
|
1358
|
+
private _onKeyPress;
|
1359
|
+
render(): JSX.Element;
|
1296
1360
|
}
|
1297
1361
|
}
|
1298
1362
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/controls/controlButtonComponent" {
|
@@ -1335,6 +1399,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1335
1399
|
private _onPrevKey;
|
1336
1400
|
private _onRewind;
|
1337
1401
|
private _onForward;
|
1402
|
+
private _onPrevFrame;
|
1403
|
+
private _onNextFrame;
|
1338
1404
|
private _onNextKey;
|
1339
1405
|
private _onEndKey;
|
1340
1406
|
private _onStop;
|
@@ -1381,12 +1447,15 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1381
1447
|
context: Context;
|
1382
1448
|
}
|
1383
1449
|
interface IBottomBarComponentState {
|
1450
|
+
clipLength: string;
|
1384
1451
|
}
|
1385
1452
|
export class BottomBarComponent extends React.Component<IBottomBarComponentProps, IBottomBarComponentState> {
|
1386
1453
|
private _onAnimationsLoadedObserver;
|
1387
1454
|
private _onActiveAnimationChangedObserver;
|
1455
|
+
private _onClipLengthIncreasedObserver;
|
1456
|
+
private _onClipLengthDecreasedObserver;
|
1388
1457
|
constructor(props: IBottomBarComponentProps);
|
1389
|
-
private
|
1458
|
+
private _changeClipLength;
|
1390
1459
|
componentWillUnmount(): void;
|
1391
1460
|
render(): JSX.Element;
|
1392
1461
|
}
|
@@ -1412,35 +1481,6 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1412
1481
|
render(): JSX.Element;
|
1413
1482
|
}
|
1414
1483
|
}
|
1415
|
-
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/controls/textInputComponent" {
|
1416
|
-
import * as React from "react";
|
1417
|
-
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
1418
|
-
import { Context } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/context";
|
1419
|
-
interface ITextInputComponentProps {
|
1420
|
-
globalState: GlobalState;
|
1421
|
-
context: Context;
|
1422
|
-
id?: string;
|
1423
|
-
className?: string;
|
1424
|
-
tooltip?: string;
|
1425
|
-
value: string;
|
1426
|
-
isNumber?: boolean;
|
1427
|
-
complement?: string;
|
1428
|
-
onValueAsNumberChanged?: (value: number) => void;
|
1429
|
-
}
|
1430
|
-
interface ITextInputComponentState {
|
1431
|
-
value: string;
|
1432
|
-
isFocused: boolean;
|
1433
|
-
}
|
1434
|
-
export class TextInputComponent extends React.Component<ITextInputComponentProps, ITextInputComponentState> {
|
1435
|
-
private _lastKnownGoodValue;
|
1436
|
-
constructor(props: ITextInputComponentProps);
|
1437
|
-
private _onChange;
|
1438
|
-
private _onBlur;
|
1439
|
-
private _onFocus;
|
1440
|
-
shouldComponentUpdate(newProps: ITextInputComponentProps, newState: ITextInputComponentState): boolean;
|
1441
|
-
render(): JSX.Element;
|
1442
|
-
}
|
1443
|
-
}
|
1444
1484
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/animations/curveEditor/topBarComponent" {
|
1445
1485
|
import * as React from "react";
|
1446
1486
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
@@ -1504,6 +1544,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1504
1544
|
export class CurveComponent extends React.Component<ICurveComponentProps, ICurveComponentState> {
|
1505
1545
|
private _onDataUpdatedObserver;
|
1506
1546
|
private _onActiveAnimationChangedObserver;
|
1547
|
+
private _onInterpolationModeSetObserver;
|
1507
1548
|
constructor(props: ICurveComponentProps);
|
1508
1549
|
componentWillUnmount(): void;
|
1509
1550
|
componentDidUpdate(): boolean;
|
@@ -1707,6 +1748,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1707
1748
|
export class AnimationListComponent extends React.Component<IAnimationListComponentProps, IAnimationListComponentState> {
|
1708
1749
|
private _onEditAnimationRequiredObserver;
|
1709
1750
|
private _onEditAnimationUIClosedObserver;
|
1751
|
+
private _onDeleteAnimationObserver;
|
1710
1752
|
constructor(props: IAnimationListComponentProps);
|
1711
1753
|
componentWillUnmount(): void;
|
1712
1754
|
render(): JSX.Element | null;
|
@@ -1890,6 +1932,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/an
|
|
1890
1932
|
componentWillUnmount(): void;
|
1891
1933
|
onCurrentFrameChange(value: number): void;
|
1892
1934
|
onChangeFromOrTo(): void;
|
1935
|
+
componentDidUpdate(prevProps: IAnimationGridComponentProps): void;
|
1893
1936
|
render(): JSX.Element;
|
1894
1937
|
}
|
1895
1938
|
}
|
@@ -2082,9 +2125,9 @@ declare module "@babylonjs/inspector/components/actionTabs/lines/textureLineComp
|
|
2082
2125
|
}
|
2083
2126
|
}
|
2084
2127
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolBar" {
|
2085
|
-
import * as React from
|
2128
|
+
import * as React from "react";
|
2086
2129
|
import { IToolData, IToolType, IMetadata } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureEditorComponent";
|
2087
|
-
import { Color4 } from
|
2130
|
+
import { Color4 } from "@babylonjs/core/Maths/math.color";
|
2088
2131
|
export interface ITool extends IToolData {
|
2089
2132
|
instance: IToolType;
|
2090
2133
|
}
|
@@ -2112,12 +2155,12 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
2112
2155
|
}
|
2113
2156
|
}
|
2114
2157
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/channelsBar" {
|
2115
|
-
import * as React from
|
2158
|
+
import * as React from "react";
|
2116
2159
|
export interface IChannel {
|
2117
2160
|
visible: boolean;
|
2118
2161
|
editable: boolean;
|
2119
2162
|
name: string;
|
2120
|
-
id:
|
2163
|
+
id: "R" | "G" | "B" | "A";
|
2121
2164
|
icon: any;
|
2122
2165
|
}
|
2123
2166
|
interface IChannelsBarProps {
|
@@ -2254,10 +2297,10 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
2254
2297
|
}
|
2255
2298
|
}
|
2256
2299
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/propertiesBar" {
|
2257
|
-
import * as React from
|
2258
|
-
import { BaseTexture } from
|
2300
|
+
import * as React from "react";
|
2301
|
+
import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
|
2259
2302
|
import { IPixelData } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureCanvasManager";
|
2260
|
-
import { ISize } from
|
2303
|
+
import { ISize } from "@babylonjs/core/Maths/math.size";
|
2261
2304
|
interface IPropertiesBarProps {
|
2262
2305
|
texture: BaseTexture;
|
2263
2306
|
size: ISize;
|
@@ -2292,8 +2335,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
2292
2335
|
}
|
2293
2336
|
}
|
2294
2337
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/bottomBar" {
|
2295
|
-
import * as React from
|
2296
|
-
import { BaseTexture } from
|
2338
|
+
import * as React from "react";
|
2339
|
+
import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
|
2297
2340
|
interface IBottomBarProps {
|
2298
2341
|
texture: BaseTexture;
|
2299
2342
|
mipLevel: number;
|
@@ -2303,8 +2346,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
2303
2346
|
}
|
2304
2347
|
}
|
2305
2348
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureCanvasComponent" {
|
2306
|
-
import * as React from
|
2307
|
-
import { BaseTexture } from
|
2349
|
+
import * as React from "react";
|
2350
|
+
import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
|
2308
2351
|
interface ITextureCanvasComponentProps {
|
2309
2352
|
canvasUI: React.RefObject<HTMLCanvasElement>;
|
2310
2353
|
canvas2D: React.RefObject<HTMLCanvasElement>;
|
@@ -2336,7 +2379,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
2336
2379
|
export default _default;
|
2337
2380
|
}
|
2338
2381
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolSettings" {
|
2339
|
-
import * as React from
|
2382
|
+
import * as React from "react";
|
2340
2383
|
import { ITool } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolBar";
|
2341
2384
|
interface IToolSettingsProps {
|
2342
2385
|
tool: ITool | undefined;
|
@@ -2346,15 +2389,15 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
2346
2389
|
}
|
2347
2390
|
}
|
2348
2391
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureEditorComponent" {
|
2349
|
-
import * as React from
|
2392
|
+
import * as React from "react";
|
2350
2393
|
import { IPixelData } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/textureCanvasManager";
|
2351
2394
|
import { ITool } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/toolBar";
|
2352
2395
|
import { IChannel } from "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/textures/channelsBar";
|
2353
|
-
import { BaseTexture } from
|
2354
|
-
import { Scene } from
|
2355
|
-
import { ISize } from
|
2356
|
-
import { Vector2 } from
|
2357
|
-
import { PointerInfo } from
|
2396
|
+
import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture";
|
2397
|
+
import { Scene } from "@babylonjs/core/scene";
|
2398
|
+
import { ISize } from "@babylonjs/core/Maths/math.size";
|
2399
|
+
import { Vector2 } from "@babylonjs/core/Maths/math.vector";
|
2400
|
+
import { PointerInfo } from "@babylonjs/core/Events/pointerEvents";
|
2358
2401
|
import { PopupComponent } from "@babylonjs/inspector/components/popupComponent";
|
2359
2402
|
interface ITextureEditorComponentProps {
|
2360
2403
|
texture: BaseTexture;
|
@@ -3259,7 +3302,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
|
|
3259
3302
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
3260
3303
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3261
3304
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3262
|
-
import { PostProcess } from
|
3305
|
+
import { PostProcess } from "@babylonjs/core/PostProcesses/postProcess";
|
3263
3306
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3264
3307
|
interface ICommonPostProcessPropertyGridComponentProps {
|
3265
3308
|
globalState: GlobalState;
|
@@ -3296,7 +3339,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
|
|
3296
3339
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
3297
3340
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3298
3341
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3299
|
-
import { PostProcessRenderPipeline } from
|
3342
|
+
import { PostProcessRenderPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipeline";
|
3300
3343
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3301
3344
|
interface ICommonRenderingPipelinePropertyGridComponentProps {
|
3302
3345
|
globalState: GlobalState;
|
@@ -3350,7 +3393,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
|
|
3350
3393
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
3351
3394
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3352
3395
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3353
|
-
import { SSAORenderingPipeline } from
|
3396
|
+
import { SSAORenderingPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/Pipelines/ssaoRenderingPipeline";
|
3354
3397
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3355
3398
|
interface ISSAORenderingPipelinePropertyGridComponentProps {
|
3356
3399
|
globalState: GlobalState;
|
@@ -3368,7 +3411,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/po
|
|
3368
3411
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
3369
3412
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3370
3413
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3371
|
-
import { SSAO2RenderingPipeline } from
|
3414
|
+
import { SSAO2RenderingPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/Pipelines/ssao2RenderingPipeline";
|
3372
3415
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3373
3416
|
interface ISSAO2RenderingPipelinePropertyGridComponentProps {
|
3374
3417
|
globalState: GlobalState;
|
@@ -3387,7 +3430,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/me
|
|
3387
3430
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3388
3431
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3389
3432
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3390
|
-
import { Skeleton } from
|
3433
|
+
import { Skeleton } from "@babylonjs/core/Bones/skeleton";
|
3391
3434
|
interface ISkeletonPropertyGridComponentProps {
|
3392
3435
|
globalState: GlobalState;
|
3393
3436
|
skeleton: Skeleton;
|
@@ -3414,7 +3457,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/me
|
|
3414
3457
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3415
3458
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3416
3459
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3417
|
-
import { Bone } from
|
3460
|
+
import { Bone } from "@babylonjs/core/Bones/bone";
|
3418
3461
|
interface IBonePropertyGridComponentProps {
|
3419
3462
|
globalState: GlobalState;
|
3420
3463
|
bone: Bone;
|
@@ -3523,9 +3566,9 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/vector4LineCompone
|
|
3523
3566
|
}
|
3524
3567
|
}
|
3525
3568
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/gradientStepComponent" {
|
3526
|
-
import * as React from
|
3569
|
+
import * as React from "react";
|
3527
3570
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3528
|
-
import { GradientBlockColorStep } from
|
3571
|
+
import { GradientBlockColorStep } from "@babylonjs/core/Materials/Node/Blocks/gradientBlock";
|
3529
3572
|
interface IGradientStepComponentProps {
|
3530
3573
|
globalState: GlobalState;
|
3531
3574
|
step: GradientBlockColorStep;
|
@@ -3555,7 +3598,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyComponen
|
|
3555
3598
|
}
|
3556
3599
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/gradientNodePropertyComponent" {
|
3557
3600
|
import * as React from "react";
|
3558
|
-
import { GradientBlockColorStep } from
|
3601
|
+
import { GradientBlockColorStep } from "@babylonjs/core/Materials/Node/Blocks/gradientBlock";
|
3559
3602
|
import { IPropertyComponentProps } from "@babylonjs/inspector/components/actionTabs/tabs/propertyComponentProps";
|
3560
3603
|
export class GradientPropertyTabComponent extends React.Component<IPropertyComponentProps> {
|
3561
3604
|
private _gradientBlock;
|
@@ -3611,7 +3654,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
3611
3654
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3612
3655
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3613
3656
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3614
|
-
import { InputBlock } from
|
3657
|
+
import { InputBlock } from "@babylonjs/core/Materials/Node/Blocks/Input/inputBlock";
|
3615
3658
|
interface INodeMaterialPropertyGridComponentProps {
|
3616
3659
|
globalState: GlobalState;
|
3617
3660
|
material: NodeMaterial;
|
@@ -3635,8 +3678,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ma
|
|
3635
3678
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3636
3679
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3637
3680
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3638
|
-
import { Material } from
|
3639
|
-
import { MultiMaterial } from
|
3681
|
+
import { Material } from "@babylonjs/core/Materials/material";
|
3682
|
+
import { MultiMaterial } from "@babylonjs/core/Materials/multiMaterial";
|
3640
3683
|
interface IMultiMaterialPropertyGridComponentProps {
|
3641
3684
|
globalState: GlobalState;
|
3642
3685
|
material: MultiMaterial;
|
@@ -3656,7 +3699,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3656
3699
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
3657
3700
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3658
3701
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3659
|
-
import { BoxParticleEmitter } from
|
3702
|
+
import { BoxParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/boxParticleEmitter";
|
3660
3703
|
interface IBoxEmitterGridComponentProps {
|
3661
3704
|
globalState: GlobalState;
|
3662
3705
|
emitter: BoxParticleEmitter;
|
@@ -3672,7 +3715,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3672
3715
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
3673
3716
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3674
3717
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3675
|
-
import { ConeParticleEmitter } from
|
3718
|
+
import { ConeParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/coneParticleEmitter";
|
3676
3719
|
interface IConeEmitterGridComponentProps {
|
3677
3720
|
globalState: GlobalState;
|
3678
3721
|
emitter: ConeParticleEmitter;
|
@@ -3689,7 +3732,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3689
3732
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
3690
3733
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3691
3734
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3692
|
-
import { CylinderParticleEmitter } from
|
3735
|
+
import { CylinderParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/cylinderParticleEmitter";
|
3693
3736
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3694
3737
|
interface ICylinderEmitterGridComponentProps {
|
3695
3738
|
globalState: GlobalState;
|
@@ -3708,7 +3751,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3708
3751
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3709
3752
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3710
3753
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3711
|
-
import { HemisphericParticleEmitter } from
|
3754
|
+
import { HemisphericParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/hemisphericParticleEmitter";
|
3712
3755
|
interface IHemisphericEmitterGridComponentProps {
|
3713
3756
|
globalState: GlobalState;
|
3714
3757
|
emitter: HemisphericParticleEmitter;
|
@@ -3726,7 +3769,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3726
3769
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3727
3770
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3728
3771
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3729
|
-
import { PointParticleEmitter } from
|
3772
|
+
import { PointParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/pointParticleEmitter";
|
3730
3773
|
interface IPointEmitterGridComponentProps {
|
3731
3774
|
globalState: GlobalState;
|
3732
3775
|
emitter: PointParticleEmitter;
|
@@ -3744,7 +3787,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3744
3787
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3745
3788
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3746
3789
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3747
|
-
import { SphereParticleEmitter } from
|
3790
|
+
import { SphereParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/sphereParticleEmitter";
|
3748
3791
|
interface ISphereEmitterGridComponentProps {
|
3749
3792
|
globalState: GlobalState;
|
3750
3793
|
emitter: SphereParticleEmitter;
|
@@ -3759,9 +3802,9 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3759
3802
|
declare module "@babylonjs/inspector/components/actionTabs/lines/meshPickerComponent" {
|
3760
3803
|
import * as React from "react";
|
3761
3804
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3762
|
-
import { Observable } from
|
3805
|
+
import { Observable } from "@babylonjs/core/Misc/observable";
|
3763
3806
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3764
|
-
import { Scene } from
|
3807
|
+
import { Scene } from "@babylonjs/core/scene";
|
3765
3808
|
interface IMeshPickerComponentProps {
|
3766
3809
|
globalState: GlobalState;
|
3767
3810
|
target: any;
|
@@ -3781,8 +3824,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3781
3824
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3782
3825
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3783
3826
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3784
|
-
import { MeshParticleEmitter } from
|
3785
|
-
import { Scene } from
|
3827
|
+
import { MeshParticleEmitter } from "@babylonjs/core/Particles/EmitterTypes/meshParticleEmitter";
|
3828
|
+
import { Scene } from "@babylonjs/core/scene";
|
3786
3829
|
interface IMeshEmitterGridComponentProps {
|
3787
3830
|
globalState: GlobalState;
|
3788
3831
|
emitter: MeshParticleEmitter;
|
@@ -3797,11 +3840,11 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3797
3840
|
}
|
3798
3841
|
}
|
3799
3842
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/particleSystems/factorGradientStepGridComponent" {
|
3800
|
-
import * as React from
|
3843
|
+
import * as React from "react";
|
3801
3844
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3802
|
-
import { FactorGradient } from
|
3845
|
+
import { FactorGradient } from "@babylonjs/core/Misc/gradients";
|
3803
3846
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3804
|
-
import { IParticleSystem } from
|
3847
|
+
import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
|
3805
3848
|
interface IFactorGradientStepGridComponent {
|
3806
3849
|
globalState: GlobalState;
|
3807
3850
|
gradient: FactorGradient;
|
@@ -3834,11 +3877,11 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3834
3877
|
}
|
3835
3878
|
}
|
3836
3879
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/particleSystems/colorGradientStepGridComponent" {
|
3837
|
-
import * as React from
|
3880
|
+
import * as React from "react";
|
3838
3881
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3839
|
-
import { ColorGradient, Color3Gradient } from
|
3882
|
+
import { ColorGradient, Color3Gradient } from "@babylonjs/core/Misc/gradients";
|
3840
3883
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3841
|
-
import { IParticleSystem } from
|
3884
|
+
import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
|
3842
3885
|
interface IColorGradientStepGridComponent {
|
3843
3886
|
globalState: GlobalState;
|
3844
3887
|
gradient: ColorGradient | Color3Gradient;
|
@@ -3882,10 +3925,10 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/linkButtonComponen
|
|
3882
3925
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/particleSystems/valueGradientGridComponent" {
|
3883
3926
|
import * as React from "react";
|
3884
3927
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3885
|
-
import { IValueGradient } from
|
3928
|
+
import { IValueGradient } from "@babylonjs/core/Misc/gradients";
|
3886
3929
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3887
|
-
import { Nullable } from
|
3888
|
-
import { IParticleSystem } from
|
3930
|
+
import { Nullable } from "@babylonjs/core/types";
|
3931
|
+
import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
|
3889
3932
|
export enum GradientGridMode {
|
3890
3933
|
Factor = 0,
|
3891
3934
|
Color3 = 1,
|
@@ -3917,7 +3960,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/pa
|
|
3917
3960
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3918
3961
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3919
3962
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3920
|
-
import { IParticleSystem } from
|
3963
|
+
import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
|
3921
3964
|
interface IParticleSystemPropertyGridComponentProps {
|
3922
3965
|
globalState: GlobalState;
|
3923
3966
|
system: IParticleSystem;
|
@@ -3944,7 +3987,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/sp
|
|
3944
3987
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3945
3988
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3946
3989
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3947
|
-
import { SpriteManager } from
|
3990
|
+
import { SpriteManager } from "@babylonjs/core/Sprites/spriteManager";
|
3948
3991
|
interface ISpriteManagerPropertyGridComponentProps {
|
3949
3992
|
globalState: GlobalState;
|
3950
3993
|
spriteManager: SpriteManager;
|
@@ -3970,7 +4013,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/sp
|
|
3970
4013
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
3971
4014
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
3972
4015
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
3973
|
-
import { Sprite } from
|
4016
|
+
import { Sprite } from "@babylonjs/core/Sprites/sprite";
|
3974
4017
|
interface ISpritePropertyGridComponentProps {
|
3975
4018
|
globalState: GlobalState;
|
3976
4019
|
sprite: Sprite;
|
@@ -4024,7 +4067,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/ca
|
|
4024
4067
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
4025
4068
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
4026
4069
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
4027
|
-
import { FollowCamera } from
|
4070
|
+
import { FollowCamera } from "@babylonjs/core/Cameras/followCamera";
|
4028
4071
|
interface IFollowCameraPropertyGridComponentProps {
|
4029
4072
|
globalState: GlobalState;
|
4030
4073
|
camera: FollowCamera;
|
@@ -4042,8 +4085,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/so
|
|
4042
4085
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
4043
4086
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
4044
4087
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
4045
|
-
import { Sound } from
|
4046
|
-
import { IExplorerExtensibilityGroup } from
|
4088
|
+
import { Sound } from "@babylonjs/core/Audio/sound";
|
4089
|
+
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4047
4090
|
interface ISoundPropertyGridComponentProps {
|
4048
4091
|
globalState: GlobalState;
|
4049
4092
|
sound: Sound;
|
@@ -4062,7 +4105,7 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/la
|
|
4062
4105
|
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
4063
4106
|
import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
|
4064
4107
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
4065
|
-
import { IExplorerExtensibilityGroup } from
|
4108
|
+
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4066
4109
|
import { EffectLayer } from "@babylonjs/core/Layers/effectLayer";
|
4067
4110
|
interface ILayerPropertyGridComponentProps {
|
4068
4111
|
globalState: GlobalState;
|
@@ -4341,8 +4384,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/lightTree
|
|
4341
4384
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/materialTreeItemComponent" {
|
4342
4385
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4343
4386
|
import { Material } from "@babylonjs/core/Materials/material";
|
4344
|
-
import * as React from
|
4345
|
-
import { NodeMaterial } from
|
4387
|
+
import * as React from "react";
|
4388
|
+
import { NodeMaterial } from "@babylonjs/core/Materials/Node/nodeMaterial";
|
4346
4389
|
interface IMaterialTreeItemComponentProps {
|
4347
4390
|
material: Material | NodeMaterial;
|
4348
4391
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4356,7 +4399,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/materialT
|
|
4356
4399
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/textureTreeItemComponent" {
|
4357
4400
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4358
4401
|
import { Texture } from "@babylonjs/core/Materials/Textures/texture";
|
4359
|
-
import * as React from
|
4402
|
+
import * as React from "react";
|
4360
4403
|
interface ITextureTreeItemComponentProps {
|
4361
4404
|
texture: Texture;
|
4362
4405
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4384,7 +4427,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/transform
|
|
4384
4427
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/gui/controlTreeItemComponent" {
|
4385
4428
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4386
4429
|
import { Control } from "@babylonjs/gui/2D/controls/control";
|
4387
|
-
import * as React from
|
4430
|
+
import * as React from "react";
|
4388
4431
|
interface IControlTreeItemComponentProps {
|
4389
4432
|
control: Control;
|
4390
4433
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4403,8 +4446,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/gui/contr
|
|
4403
4446
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/gui/advancedDynamicTextureTreeItemComponent" {
|
4404
4447
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
4405
4448
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4406
|
-
import { AdvancedDynamicTexture } from
|
4407
|
-
import * as React from
|
4449
|
+
import { AdvancedDynamicTexture } from "@babylonjs/gui/2D/advancedDynamicTexture";
|
4450
|
+
import * as React from "react";
|
4408
4451
|
interface IAdvancedDynamicTextureTreeItemComponentProps {
|
4409
4452
|
texture: AdvancedDynamicTexture;
|
4410
4453
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4437,8 +4480,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/animation
|
|
4437
4480
|
}
|
4438
4481
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/postProcessTreeItemComponent" {
|
4439
4482
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4440
|
-
import { PostProcess } from
|
4441
|
-
import * as React from
|
4483
|
+
import { PostProcess } from "@babylonjs/core/PostProcesses/postProcess";
|
4484
|
+
import * as React from "react";
|
4442
4485
|
interface IPostProcessItemComponentProps {
|
4443
4486
|
postProcess: PostProcess;
|
4444
4487
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4451,8 +4494,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/postProce
|
|
4451
4494
|
}
|
4452
4495
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/renderingPipelineTreeItemComponent" {
|
4453
4496
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4454
|
-
import { PostProcessRenderPipeline } from
|
4455
|
-
import * as React from
|
4497
|
+
import { PostProcessRenderPipeline } from "@babylonjs/core/PostProcesses/RenderPipeline/postProcessRenderPipeline";
|
4498
|
+
import * as React from "react";
|
4456
4499
|
interface IRenderPipelineItemComponenttProps {
|
4457
4500
|
renderPipeline: PostProcessRenderPipeline;
|
4458
4501
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4466,7 +4509,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/rendering
|
|
4466
4509
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/skeletonTreeItemComponent" {
|
4467
4510
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4468
4511
|
import * as React from "react";
|
4469
|
-
import { Skeleton } from
|
4512
|
+
import { Skeleton } from "@babylonjs/core/Bones/skeleton";
|
4470
4513
|
interface ISkeletonTreeItemComponentProps {
|
4471
4514
|
skeleton: Skeleton;
|
4472
4515
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4480,7 +4523,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/skeletonT
|
|
4480
4523
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/boneTreeItemComponent" {
|
4481
4524
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4482
4525
|
import * as React from "react";
|
4483
|
-
import { Bone } from
|
4526
|
+
import { Bone } from "@babylonjs/core/Bones/bone";
|
4484
4527
|
interface IBoneTreeItemComponenttProps {
|
4485
4528
|
bone: Bone;
|
4486
4529
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4493,8 +4536,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/boneTreeI
|
|
4493
4536
|
}
|
4494
4537
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/particleSystemTreeItemComponent" {
|
4495
4538
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4496
|
-
import * as React from
|
4497
|
-
import { IParticleSystem } from
|
4539
|
+
import * as React from "react";
|
4540
|
+
import { IParticleSystem } from "@babylonjs/core/Particles/IParticleSystem";
|
4498
4541
|
interface IParticleSystemTreeItemComponentProps {
|
4499
4542
|
system: IParticleSystem;
|
4500
4543
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4507,8 +4550,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/particleS
|
|
4507
4550
|
}
|
4508
4551
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/spriteManagerTreeItemComponent" {
|
4509
4552
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4510
|
-
import * as React from
|
4511
|
-
import { SpriteManager } from
|
4553
|
+
import * as React from "react";
|
4554
|
+
import { SpriteManager } from "@babylonjs/core/Sprites/spriteManager";
|
4512
4555
|
interface ISpriteManagerTreeItemComponentProps {
|
4513
4556
|
spriteManager: SpriteManager;
|
4514
4557
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4521,8 +4564,8 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/spriteMan
|
|
4521
4564
|
}
|
4522
4565
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/spriteTreeItemComponent" {
|
4523
4566
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4524
|
-
import * as React from
|
4525
|
-
import { Sprite } from
|
4567
|
+
import * as React from "react";
|
4568
|
+
import { Sprite } from "@babylonjs/core/Sprites/sprite";
|
4526
4569
|
interface ISpriteTreeItemComponentProps {
|
4527
4570
|
sprite: Sprite;
|
4528
4571
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4550,7 +4593,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/targetedA
|
|
4550
4593
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/soundTreeItemComponent" {
|
4551
4594
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4552
4595
|
import * as React from "react";
|
4553
|
-
import { Sound } from
|
4596
|
+
import { Sound } from "@babylonjs/core/Audio/sound";
|
4554
4597
|
interface ISoundTreeItemComponentProps {
|
4555
4598
|
sound: Sound;
|
4556
4599
|
extensibilityGroups?: IExplorerExtensibilityGroup[];
|
@@ -4563,7 +4606,7 @@ declare module "@babylonjs/inspector/components/sceneExplorer/entities/soundTree
|
|
4563
4606
|
}
|
4564
4607
|
declare module "@babylonjs/inspector/components/sceneExplorer/entities/effectLayerPipelineTreeItemComponent" {
|
4565
4608
|
import { IExplorerExtensibilityGroup } from "@babylonjs/core/Debug/debugLayer";
|
4566
|
-
import * as React from
|
4609
|
+
import * as React from "react";
|
4567
4610
|
import { EffectLayer } from "@babylonjs/core/Layers/effectLayer";
|
4568
4611
|
interface IEffectLayerItemComponenttProps {
|
4569
4612
|
layer: EffectLayer;
|
@@ -4765,7 +4808,7 @@ declare module "@babylonjs/inspector/components/embedHost/embedHostComponent" {
|
|
4765
4808
|
import * as React from "react";
|
4766
4809
|
import { Scene } from "@babylonjs/core/scene";
|
4767
4810
|
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
4768
|
-
import { IExplorerExtensibilityGroup, DebugLayerTab } from
|
4811
|
+
import { IExplorerExtensibilityGroup, DebugLayerTab } from "@babylonjs/core/Debug/debugLayer";
|
4769
4812
|
interface IEmbedHostComponentProps {
|
4770
4813
|
scene: Scene;
|
4771
4814
|
globalState: GlobalState;
|
@@ -4869,7 +4912,7 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/draggableLineCompo
|
|
4869
4912
|
}
|
4870
4913
|
}
|
4871
4914
|
declare module "@babylonjs/inspector/sharedUiComponents/lines/iconButtonLineComponent" {
|
4872
|
-
import * as React from
|
4915
|
+
import * as React from "react";
|
4873
4916
|
export interface IIconButtonLineComponentProps {
|
4874
4917
|
icon: string;
|
4875
4918
|
onClick: () => void;
|