babylonjs-inspector 5.0.3 → 5.0.4
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 +162 -162
- package/babylon.inspector.module.d.ts +325 -325
- package/package.json +6 -6
package/babylon.inspector.d.ts
CHANGED
|
@@ -235,7 +235,7 @@ declare module INSPECTOR {
|
|
|
235
235
|
globalState: GlobalState;
|
|
236
236
|
animationGroup: BABYLON.AnimationGroup;
|
|
237
237
|
scene: BABYLON.Scene;
|
|
238
|
-
lockObject:
|
|
238
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
239
239
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
240
240
|
}
|
|
241
241
|
export class AnimationGroupGridComponent extends React.Component<IAnimationGroupGridComponentProps, {
|
|
@@ -263,7 +263,7 @@ declare module INSPECTOR {
|
|
|
263
263
|
globalState: GlobalState;
|
|
264
264
|
animatable: BABYLON.IAnimatable;
|
|
265
265
|
scene: BABYLON.Scene;
|
|
266
|
-
lockObject:
|
|
266
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
267
267
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
268
268
|
}
|
|
269
269
|
export class AnimationGridComponent extends React.Component<IAnimationGridComponentProps, {
|
|
@@ -1017,7 +1017,7 @@ declare module INSPECTOR {
|
|
|
1017
1017
|
globalState: GlobalState;
|
|
1018
1018
|
targetedAnimation: BABYLON.TargetedAnimation;
|
|
1019
1019
|
scene: BABYLON.Scene;
|
|
1020
|
-
lockObject:
|
|
1020
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1021
1021
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1022
1022
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1023
1023
|
}
|
|
@@ -1034,7 +1034,7 @@ declare module INSPECTOR {
|
|
|
1034
1034
|
interface IArcRotateCameraPropertyGridComponentProps {
|
|
1035
1035
|
globalState: GlobalState;
|
|
1036
1036
|
camera: BABYLON.ArcRotateCamera;
|
|
1037
|
-
lockObject:
|
|
1037
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1038
1038
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1039
1039
|
}
|
|
1040
1040
|
export class ArcRotateCameraPropertyGridComponent extends React.Component<IArcRotateCameraPropertyGridComponentProps> {
|
|
@@ -1046,7 +1046,7 @@ declare module INSPECTOR {
|
|
|
1046
1046
|
interface ICommonCameraPropertyGridComponentProps {
|
|
1047
1047
|
globalState: GlobalState;
|
|
1048
1048
|
camera: BABYLON.Camera;
|
|
1049
|
-
lockObject:
|
|
1049
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1050
1050
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1051
1051
|
}
|
|
1052
1052
|
export class CommonCameraPropertyGridComponent extends React.Component<ICommonCameraPropertyGridComponentProps, {
|
|
@@ -1060,7 +1060,7 @@ declare module INSPECTOR {
|
|
|
1060
1060
|
interface IFollowCameraPropertyGridComponentProps {
|
|
1061
1061
|
globalState: GlobalState;
|
|
1062
1062
|
camera: BABYLON.FollowCamera;
|
|
1063
|
-
lockObject:
|
|
1063
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1064
1064
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1065
1065
|
}
|
|
1066
1066
|
export class FollowCameraPropertyGridComponent extends React.Component<IFollowCameraPropertyGridComponentProps> {
|
|
@@ -1072,7 +1072,7 @@ declare module INSPECTOR {
|
|
|
1072
1072
|
interface IFreeCameraPropertyGridComponentProps {
|
|
1073
1073
|
globalState: GlobalState;
|
|
1074
1074
|
camera: BABYLON.FreeCamera;
|
|
1075
|
-
lockObject:
|
|
1075
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1076
1076
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1077
1077
|
}
|
|
1078
1078
|
export class FreeCameraPropertyGridComponent extends React.Component<IFreeCameraPropertyGridComponentProps> {
|
|
@@ -1086,7 +1086,7 @@ declare module INSPECTOR {
|
|
|
1086
1086
|
host: {
|
|
1087
1087
|
metadata: any;
|
|
1088
1088
|
};
|
|
1089
|
-
lockObject:
|
|
1089
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1090
1090
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1091
1091
|
}
|
|
1092
1092
|
export class CommonPropertyGridComponent extends React.Component<ICommonPropertyGridComponentProps> {
|
|
@@ -1099,7 +1099,7 @@ declare module INSPECTOR {
|
|
|
1099
1099
|
interface ICustomPropertyGridComponentProps {
|
|
1100
1100
|
globalState: GlobalState;
|
|
1101
1101
|
target: any;
|
|
1102
|
-
lockObject:
|
|
1102
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1103
1103
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1104
1104
|
}
|
|
1105
1105
|
export class CustomPropertyGridComponent extends React.Component<ICustomPropertyGridComponentProps, {
|
|
@@ -1114,7 +1114,7 @@ declare module INSPECTOR {
|
|
|
1114
1114
|
interface IFogPropertyGridComponentProps {
|
|
1115
1115
|
globalState: GlobalState;
|
|
1116
1116
|
scene: BABYLON.Scene;
|
|
1117
|
-
lockObject:
|
|
1117
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1118
1118
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1119
1119
|
}
|
|
1120
1120
|
export class FogPropertyGridComponent extends React.Component<IFogPropertyGridComponentProps, {
|
|
@@ -1129,7 +1129,7 @@ declare module INSPECTOR {
|
|
|
1129
1129
|
globalState: GlobalState;
|
|
1130
1130
|
layer: BABYLON.EffectLayer;
|
|
1131
1131
|
extensibilityGroups?: BABYLON.IExplorerExtensibilityGroup[];
|
|
1132
|
-
lockObject:
|
|
1132
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1133
1133
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1134
1134
|
}
|
|
1135
1135
|
export class LayerPropertyGridComponent extends React.Component<ILayerPropertyGridComponentProps> {
|
|
@@ -1141,7 +1141,7 @@ declare module INSPECTOR {
|
|
|
1141
1141
|
interface ICommonLightPropertyGridComponentProps {
|
|
1142
1142
|
globalState: GlobalState;
|
|
1143
1143
|
light: BABYLON.Light;
|
|
1144
|
-
lockObject:
|
|
1144
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1145
1145
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1146
1146
|
}
|
|
1147
1147
|
export class CommonLightPropertyGridComponent extends React.Component<ICommonLightPropertyGridComponentProps> {
|
|
@@ -1153,7 +1153,7 @@ declare module INSPECTOR {
|
|
|
1153
1153
|
interface ICommonShadowLightPropertyGridComponentProps {
|
|
1154
1154
|
globalState: GlobalState;
|
|
1155
1155
|
light: BABYLON.IShadowLight;
|
|
1156
|
-
lockObject:
|
|
1156
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1157
1157
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1158
1158
|
}
|
|
1159
1159
|
export class CommonShadowLightPropertyGridComponent extends React.Component<ICommonShadowLightPropertyGridComponentProps> {
|
|
@@ -1168,7 +1168,7 @@ declare module INSPECTOR {
|
|
|
1168
1168
|
interface IDirectionalLightPropertyGridComponentProps {
|
|
1169
1169
|
globalState: GlobalState;
|
|
1170
1170
|
light: BABYLON.DirectionalLight;
|
|
1171
|
-
lockObject:
|
|
1171
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1172
1172
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1173
1173
|
}
|
|
1174
1174
|
export class DirectionalLightPropertyGridComponent extends React.Component<IDirectionalLightPropertyGridComponentProps> {
|
|
@@ -1181,7 +1181,7 @@ declare module INSPECTOR {
|
|
|
1181
1181
|
interface IHemisphericLightPropertyGridComponentProps {
|
|
1182
1182
|
globalState: GlobalState;
|
|
1183
1183
|
light: BABYLON.HemisphericLight;
|
|
1184
|
-
lockObject:
|
|
1184
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1185
1185
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1186
1186
|
}
|
|
1187
1187
|
export class HemisphericLightPropertyGridComponent extends React.Component<IHemisphericLightPropertyGridComponentProps> {
|
|
@@ -1193,7 +1193,7 @@ declare module INSPECTOR {
|
|
|
1193
1193
|
interface IPointLightPropertyGridComponentProps {
|
|
1194
1194
|
globalState: GlobalState;
|
|
1195
1195
|
light: BABYLON.PointLight;
|
|
1196
|
-
lockObject:
|
|
1196
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1197
1197
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1198
1198
|
}
|
|
1199
1199
|
export class PointLightPropertyGridComponent extends React.Component<IPointLightPropertyGridComponentProps> {
|
|
@@ -1205,7 +1205,7 @@ declare module INSPECTOR {
|
|
|
1205
1205
|
interface ISpotLightPropertyGridComponentProps {
|
|
1206
1206
|
globalState: GlobalState;
|
|
1207
1207
|
light: BABYLON.SpotLight;
|
|
1208
|
-
lockObject:
|
|
1208
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1209
1209
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1210
1210
|
}
|
|
1211
1211
|
export class SpotLightPropertyGridComponent extends React.Component<ISpotLightPropertyGridComponentProps> {
|
|
@@ -1217,7 +1217,7 @@ declare module INSPECTOR {
|
|
|
1217
1217
|
interface IBackgroundMaterialPropertyGridComponentProps {
|
|
1218
1218
|
globalState: GlobalState;
|
|
1219
1219
|
material: BABYLON.BackgroundMaterial;
|
|
1220
|
-
lockObject:
|
|
1220
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1221
1221
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1222
1222
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1223
1223
|
}
|
|
@@ -1232,7 +1232,7 @@ declare module INSPECTOR {
|
|
|
1232
1232
|
interface ICommonMaterialPropertyGridComponentProps {
|
|
1233
1233
|
globalState: GlobalState;
|
|
1234
1234
|
material: BABYLON.Material;
|
|
1235
|
-
lockObject:
|
|
1235
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1236
1236
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1237
1237
|
}
|
|
1238
1238
|
export class CommonMaterialPropertyGridComponent extends React.Component<ICommonMaterialPropertyGridComponentProps> {
|
|
@@ -1244,7 +1244,7 @@ declare module INSPECTOR {
|
|
|
1244
1244
|
interface IMaterialPropertyGridComponentProps {
|
|
1245
1245
|
globalState: GlobalState;
|
|
1246
1246
|
material: BABYLON.Material;
|
|
1247
|
-
lockObject:
|
|
1247
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1248
1248
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1249
1249
|
}
|
|
1250
1250
|
export class MaterialPropertyGridComponent extends React.Component<IMaterialPropertyGridComponentProps> {
|
|
@@ -1256,7 +1256,7 @@ declare module INSPECTOR {
|
|
|
1256
1256
|
interface IMultiMaterialPropertyGridComponentProps {
|
|
1257
1257
|
globalState: GlobalState;
|
|
1258
1258
|
material: BABYLON.MultiMaterial;
|
|
1259
|
-
lockObject:
|
|
1259
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1260
1260
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1261
1261
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1262
1262
|
}
|
|
@@ -1271,7 +1271,7 @@ declare module INSPECTOR {
|
|
|
1271
1271
|
interface INodeMaterialPropertyGridComponentProps {
|
|
1272
1272
|
globalState: GlobalState;
|
|
1273
1273
|
material: BABYLON.NodeMaterial;
|
|
1274
|
-
lockObject:
|
|
1274
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1275
1275
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1276
1276
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1277
1277
|
}
|
|
@@ -1289,7 +1289,7 @@ declare module INSPECTOR {
|
|
|
1289
1289
|
interface IPBRMaterialPropertyGridComponentProps {
|
|
1290
1290
|
globalState: GlobalState;
|
|
1291
1291
|
material: BABYLON.PBRMaterial;
|
|
1292
|
-
lockObject:
|
|
1292
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1293
1293
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1294
1294
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1295
1295
|
}
|
|
@@ -1305,7 +1305,7 @@ declare module INSPECTOR {
|
|
|
1305
1305
|
interface IPBRMetallicRoughnessMaterialPropertyGridComponentProps {
|
|
1306
1306
|
globalState: GlobalState;
|
|
1307
1307
|
material: BABYLON.PBRMetallicRoughnessMaterial;
|
|
1308
|
-
lockObject:
|
|
1308
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1309
1309
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1310
1310
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1311
1311
|
}
|
|
@@ -1320,7 +1320,7 @@ declare module INSPECTOR {
|
|
|
1320
1320
|
interface IPBRSpecularGlossinessMaterialPropertyGridComponentProps {
|
|
1321
1321
|
globalState: GlobalState;
|
|
1322
1322
|
material: BABYLON.PBRSpecularGlossinessMaterial;
|
|
1323
|
-
lockObject:
|
|
1323
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1324
1324
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1325
1325
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1326
1326
|
}
|
|
@@ -1335,7 +1335,7 @@ declare module INSPECTOR {
|
|
|
1335
1335
|
interface IStandardMaterialPropertyGridComponentProps {
|
|
1336
1336
|
globalState: GlobalState;
|
|
1337
1337
|
material: BABYLON.StandardMaterial;
|
|
1338
|
-
lockObject:
|
|
1338
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1339
1339
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1340
1340
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1341
1341
|
}
|
|
@@ -1349,7 +1349,7 @@ declare module INSPECTOR {
|
|
|
1349
1349
|
|
|
1350
1350
|
interface ITexturePropertyGridComponentProps {
|
|
1351
1351
|
texture: BABYLON.BaseTexture;
|
|
1352
|
-
lockObject:
|
|
1352
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1353
1353
|
globalState: GlobalState;
|
|
1354
1354
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1355
1355
|
}
|
|
@@ -1752,7 +1752,7 @@ declare module INSPECTOR {
|
|
|
1752
1752
|
interface IBonePropertyGridComponentProps {
|
|
1753
1753
|
globalState: GlobalState;
|
|
1754
1754
|
bone: BABYLON.Bone;
|
|
1755
|
-
lockObject:
|
|
1755
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1756
1756
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1757
1757
|
}
|
|
1758
1758
|
export class BonePropertyGridComponent extends React.Component<IBonePropertyGridComponentProps> {
|
|
@@ -1765,7 +1765,7 @@ declare module INSPECTOR {
|
|
|
1765
1765
|
interface IMeshPropertyGridComponentProps {
|
|
1766
1766
|
globalState: GlobalState;
|
|
1767
1767
|
mesh: BABYLON.Mesh;
|
|
1768
|
-
lockObject:
|
|
1768
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1769
1769
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1770
1770
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1771
1771
|
}
|
|
@@ -1795,7 +1795,7 @@ declare module INSPECTOR {
|
|
|
1795
1795
|
interface ISkeletonPropertyGridComponentProps {
|
|
1796
1796
|
globalState: GlobalState;
|
|
1797
1797
|
skeleton: BABYLON.Skeleton;
|
|
1798
|
-
lockObject:
|
|
1798
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1799
1799
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1800
1800
|
}
|
|
1801
1801
|
export class SkeletonPropertyGridComponent extends React.Component<ISkeletonPropertyGridComponentProps> {
|
|
@@ -1815,7 +1815,7 @@ declare module INSPECTOR {
|
|
|
1815
1815
|
interface ITransformNodePropertyGridComponentProps {
|
|
1816
1816
|
globalState: GlobalState;
|
|
1817
1817
|
transformNode: BABYLON.TransformNode;
|
|
1818
|
-
lockObject:
|
|
1818
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1819
1819
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1820
1820
|
}
|
|
1821
1821
|
export class TransformNodePropertyGridComponent extends React.Component<ITransformNodePropertyGridComponentProps> {
|
|
@@ -1826,7 +1826,7 @@ declare module INSPECTOR {
|
|
|
1826
1826
|
|
|
1827
1827
|
interface IParentPropertyGridComponentProps {
|
|
1828
1828
|
globalState: GlobalState;
|
|
1829
|
-
lockObject:
|
|
1829
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1830
1830
|
node: BABYLON.Node;
|
|
1831
1831
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1832
1832
|
}
|
|
@@ -1850,7 +1850,7 @@ declare module INSPECTOR {
|
|
|
1850
1850
|
interface IColorGradientStepGridComponent {
|
|
1851
1851
|
globalState: GlobalState;
|
|
1852
1852
|
gradient: BABYLON.ColorGradient | BABYLON.Color3Gradient;
|
|
1853
|
-
lockObject:
|
|
1853
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1854
1854
|
lineIndex: number;
|
|
1855
1855
|
isColor3: boolean;
|
|
1856
1856
|
onDelete: () => void;
|
|
@@ -1888,7 +1888,7 @@ declare module INSPECTOR {
|
|
|
1888
1888
|
interface ICylinderEmitterGridComponentProps {
|
|
1889
1889
|
globalState: GlobalState;
|
|
1890
1890
|
emitter: BABYLON.CylinderParticleEmitter;
|
|
1891
|
-
lockObject:
|
|
1891
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1892
1892
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1893
1893
|
}
|
|
1894
1894
|
export class CylinderEmitterGridComponent extends React.Component<ICylinderEmitterGridComponentProps> {
|
|
@@ -1900,7 +1900,7 @@ declare module INSPECTOR {
|
|
|
1900
1900
|
interface IFactorGradientStepGridComponent {
|
|
1901
1901
|
globalState: GlobalState;
|
|
1902
1902
|
gradient: BABYLON.FactorGradient;
|
|
1903
|
-
lockObject:
|
|
1903
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1904
1904
|
lineIndex: number;
|
|
1905
1905
|
onDelete: () => void;
|
|
1906
1906
|
onUpdateGradient: () => void;
|
|
@@ -1932,7 +1932,7 @@ declare module INSPECTOR {
|
|
|
1932
1932
|
interface IHemisphericEmitterGridComponentProps {
|
|
1933
1933
|
globalState: GlobalState;
|
|
1934
1934
|
emitter: BABYLON.HemisphericParticleEmitter;
|
|
1935
|
-
lockObject:
|
|
1935
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1936
1936
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1937
1937
|
}
|
|
1938
1938
|
export class HemisphericEmitterGridComponent extends React.Component<IHemisphericEmitterGridComponentProps> {
|
|
@@ -1945,7 +1945,7 @@ declare module INSPECTOR {
|
|
|
1945
1945
|
globalState: GlobalState;
|
|
1946
1946
|
emitter: BABYLON.MeshParticleEmitter;
|
|
1947
1947
|
scene: BABYLON.Scene;
|
|
1948
|
-
lockObject:
|
|
1948
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1949
1949
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1950
1950
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1951
1951
|
}
|
|
@@ -1958,7 +1958,7 @@ declare module INSPECTOR {
|
|
|
1958
1958
|
interface IParticleSystemPropertyGridComponentProps {
|
|
1959
1959
|
globalState: GlobalState;
|
|
1960
1960
|
system: BABYLON.IParticleSystem;
|
|
1961
|
-
lockObject:
|
|
1961
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1962
1962
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
1963
1963
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1964
1964
|
}
|
|
@@ -1979,7 +1979,7 @@ declare module INSPECTOR {
|
|
|
1979
1979
|
interface IPointEmitterGridComponentProps {
|
|
1980
1980
|
globalState: GlobalState;
|
|
1981
1981
|
emitter: BABYLON.PointParticleEmitter;
|
|
1982
|
-
lockObject:
|
|
1982
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1983
1983
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1984
1984
|
}
|
|
1985
1985
|
export class PointEmitterGridComponent extends React.Component<IPointEmitterGridComponentProps> {
|
|
@@ -1991,7 +1991,7 @@ declare module INSPECTOR {
|
|
|
1991
1991
|
interface ISphereEmitterGridComponentProps {
|
|
1992
1992
|
globalState: GlobalState;
|
|
1993
1993
|
emitter: BABYLON.SphereParticleEmitter;
|
|
1994
|
-
lockObject:
|
|
1994
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
1995
1995
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1996
1996
|
}
|
|
1997
1997
|
export class SphereEmitterGridComponent extends React.Component<ISphereEmitterGridComponentProps> {
|
|
@@ -2009,7 +2009,7 @@ declare module INSPECTOR {
|
|
|
2009
2009
|
globalState: GlobalState;
|
|
2010
2010
|
label: string;
|
|
2011
2011
|
gradients: BABYLON.Nullable<Array<BABYLON.IValueGradient>>;
|
|
2012
|
-
lockObject:
|
|
2012
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2013
2013
|
docLink?: string;
|
|
2014
2014
|
mode: GradientGridMode;
|
|
2015
2015
|
host: BABYLON.IParticleSystem;
|
|
@@ -2029,7 +2029,7 @@ declare module INSPECTOR {
|
|
|
2029
2029
|
interface ICommonPostProcessPropertyGridComponentProps {
|
|
2030
2030
|
globalState: GlobalState;
|
|
2031
2031
|
postProcess: BABYLON.PostProcess;
|
|
2032
|
-
lockObject:
|
|
2032
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2033
2033
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2034
2034
|
}
|
|
2035
2035
|
export class CommonPostProcessPropertyGridComponent extends React.Component<ICommonPostProcessPropertyGridComponentProps> {
|
|
@@ -2041,7 +2041,7 @@ declare module INSPECTOR {
|
|
|
2041
2041
|
interface ICommonRenderingPipelinePropertyGridComponentProps {
|
|
2042
2042
|
globalState: GlobalState;
|
|
2043
2043
|
renderPipeline: BABYLON.PostProcessRenderPipeline;
|
|
2044
|
-
lockObject:
|
|
2044
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2045
2045
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2046
2046
|
}
|
|
2047
2047
|
export class CommonRenderingPipelinePropertyGridComponent extends React.Component<ICommonRenderingPipelinePropertyGridComponentProps> {
|
|
@@ -2053,7 +2053,7 @@ declare module INSPECTOR {
|
|
|
2053
2053
|
interface IDefaultRenderingPipelinePropertyGridComponentProps {
|
|
2054
2054
|
globalState: GlobalState;
|
|
2055
2055
|
renderPipeline: BABYLON.DefaultRenderingPipeline;
|
|
2056
|
-
lockObject:
|
|
2056
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2057
2057
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2058
2058
|
}
|
|
2059
2059
|
export class DefaultRenderingPipelinePropertyGridComponent extends React.Component<IDefaultRenderingPipelinePropertyGridComponentProps> {
|
|
@@ -2065,7 +2065,7 @@ declare module INSPECTOR {
|
|
|
2065
2065
|
interface ILenstRenderingPipelinePropertyGridComponentProps {
|
|
2066
2066
|
globalState: GlobalState;
|
|
2067
2067
|
renderPipeline: BABYLON.LensRenderingPipeline;
|
|
2068
|
-
lockObject:
|
|
2068
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2069
2069
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2070
2070
|
}
|
|
2071
2071
|
export class LensRenderingPipelinePropertyGridComponent extends React.Component<ILenstRenderingPipelinePropertyGridComponentProps> {
|
|
@@ -2077,7 +2077,7 @@ declare module INSPECTOR {
|
|
|
2077
2077
|
interface IPostProcessPropertyGridComponentProps {
|
|
2078
2078
|
globalState: GlobalState;
|
|
2079
2079
|
postProcess: BABYLON.PostProcess;
|
|
2080
|
-
lockObject:
|
|
2080
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2081
2081
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2082
2082
|
}
|
|
2083
2083
|
export class PostProcessPropertyGridComponent extends React.Component<IPostProcessPropertyGridComponentProps> {
|
|
@@ -2090,7 +2090,7 @@ declare module INSPECTOR {
|
|
|
2090
2090
|
interface IRenderingPipelinePropertyGridComponentProps {
|
|
2091
2091
|
globalState: GlobalState;
|
|
2092
2092
|
renderPipeline: BABYLON.PostProcessRenderPipeline;
|
|
2093
|
-
lockObject:
|
|
2093
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2094
2094
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2095
2095
|
}
|
|
2096
2096
|
export class RenderingPipelinePropertyGridComponent extends React.Component<IRenderingPipelinePropertyGridComponentProps> {
|
|
@@ -2102,7 +2102,7 @@ declare module INSPECTOR {
|
|
|
2102
2102
|
interface ISSAO2RenderingPipelinePropertyGridComponentProps {
|
|
2103
2103
|
globalState: GlobalState;
|
|
2104
2104
|
renderPipeline: BABYLON.SSAO2RenderingPipeline;
|
|
2105
|
-
lockObject:
|
|
2105
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2106
2106
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2107
2107
|
}
|
|
2108
2108
|
export class SSAO2RenderingPipelinePropertyGridComponent extends React.Component<ISSAO2RenderingPipelinePropertyGridComponentProps> {
|
|
@@ -2114,7 +2114,7 @@ declare module INSPECTOR {
|
|
|
2114
2114
|
interface ISSAORenderingPipelinePropertyGridComponentProps {
|
|
2115
2115
|
globalState: GlobalState;
|
|
2116
2116
|
renderPipeline: BABYLON.SSAORenderingPipeline;
|
|
2117
|
-
lockObject:
|
|
2117
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2118
2118
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2119
2119
|
}
|
|
2120
2120
|
export class SSAORenderingPipelinePropertyGridComponent extends React.Component<ISSAORenderingPipelinePropertyGridComponentProps> {
|
|
@@ -2141,7 +2141,7 @@ declare module INSPECTOR {
|
|
|
2141
2141
|
interface IScenePropertyGridComponentProps {
|
|
2142
2142
|
globalState: GlobalState;
|
|
2143
2143
|
scene: BABYLON.Scene;
|
|
2144
|
-
lockObject:
|
|
2144
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2145
2145
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2146
2146
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
2147
2147
|
}
|
|
@@ -2163,7 +2163,7 @@ declare module INSPECTOR {
|
|
|
2163
2163
|
globalState: GlobalState;
|
|
2164
2164
|
sound: BABYLON.Sound;
|
|
2165
2165
|
extensibilityGroups?: BABYLON.IExplorerExtensibilityGroup[];
|
|
2166
|
-
lockObject:
|
|
2166
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2167
2167
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2168
2168
|
}
|
|
2169
2169
|
export class SoundPropertyGridComponent extends React.Component<ISoundPropertyGridComponentProps> {
|
|
@@ -2175,7 +2175,7 @@ declare module INSPECTOR {
|
|
|
2175
2175
|
interface ISpriteManagerPropertyGridComponentProps {
|
|
2176
2176
|
globalState: GlobalState;
|
|
2177
2177
|
spriteManager: BABYLON.SpriteManager;
|
|
2178
|
-
lockObject:
|
|
2178
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2179
2179
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
2180
2180
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2181
2181
|
}
|
|
@@ -2195,7 +2195,7 @@ declare module INSPECTOR {
|
|
|
2195
2195
|
interface ISpritePropertyGridComponentProps {
|
|
2196
2196
|
globalState: GlobalState;
|
|
2197
2197
|
sprite: BABYLON.Sprite;
|
|
2198
|
-
lockObject:
|
|
2198
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2199
2199
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2200
2200
|
onSelectionChangedObservable?: BABYLON.Observable<any>;
|
|
2201
2201
|
}
|
|
@@ -2218,7 +2218,7 @@ declare module INSPECTOR {
|
|
|
2218
2218
|
interface IVariantsPropertyGridComponentProps {
|
|
2219
2219
|
globalState: GlobalState;
|
|
2220
2220
|
host: any;
|
|
2221
|
-
lockObject:
|
|
2221
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
2222
2222
|
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2223
2223
|
}
|
|
2224
2224
|
export class VariantsPropertyGridComponent extends React.Component<IVariantsPropertyGridComponentProps> {
|
|
@@ -3330,7 +3330,7 @@ declare module INSPECTOR {
|
|
|
3330
3330
|
|
|
3331
3331
|
|
|
3332
3332
|
}
|
|
3333
|
-
declare module
|
|
3333
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3334
3334
|
export interface IColorComponentEntryProps {
|
|
3335
3335
|
value: number;
|
|
3336
3336
|
label: string;
|
|
@@ -3351,7 +3351,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3351
3351
|
declare module INSPECTOR {
|
|
3352
3352
|
|
|
3353
3353
|
}
|
|
3354
|
-
declare module
|
|
3354
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3355
3355
|
/**
|
|
3356
3356
|
* Interface used to specify creation options for color picker
|
|
3357
3357
|
*/
|
|
@@ -3397,7 +3397,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3397
3397
|
declare module INSPECTOR {
|
|
3398
3398
|
|
|
3399
3399
|
}
|
|
3400
|
-
declare module
|
|
3400
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3401
3401
|
export interface IHexColorProps {
|
|
3402
3402
|
value: string;
|
|
3403
3403
|
expectedLength: number;
|
|
@@ -3420,7 +3420,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3420
3420
|
declare module INSPECTOR {
|
|
3421
3421
|
|
|
3422
3422
|
}
|
|
3423
|
-
declare module
|
|
3423
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3424
3424
|
export interface IBooleanLineComponentProps {
|
|
3425
3425
|
label: string;
|
|
3426
3426
|
value: boolean;
|
|
@@ -3438,7 +3438,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3438
3438
|
declare module INSPECTOR {
|
|
3439
3439
|
|
|
3440
3440
|
}
|
|
3441
|
-
declare module
|
|
3441
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3442
3442
|
export interface IButtonLineComponentProps {
|
|
3443
3443
|
label: string;
|
|
3444
3444
|
onClick: () => void;
|
|
@@ -3456,7 +3456,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3456
3456
|
declare module INSPECTOR {
|
|
3457
3457
|
|
|
3458
3458
|
}
|
|
3459
|
-
declare module
|
|
3459
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3460
3460
|
export interface ICheckBoxLineComponentProps {
|
|
3461
3461
|
label?: string;
|
|
3462
3462
|
target?: any;
|
|
@@ -3464,7 +3464,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3464
3464
|
isSelected?: () => boolean;
|
|
3465
3465
|
onSelect?: (value: boolean) => void;
|
|
3466
3466
|
onValueChanged?: () => void;
|
|
3467
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
3467
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
3468
3468
|
disabled?: boolean;
|
|
3469
3469
|
icon?: string;
|
|
3470
3470
|
iconLabel?: string;
|
|
@@ -3496,15 +3496,15 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3496
3496
|
declare module INSPECTOR {
|
|
3497
3497
|
|
|
3498
3498
|
}
|
|
3499
|
-
declare module
|
|
3499
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3500
3500
|
export interface IColor3LineComponentProps {
|
|
3501
3501
|
label: string;
|
|
3502
3502
|
target: any;
|
|
3503
3503
|
propertyName: string;
|
|
3504
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
3504
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
3505
3505
|
isLinear?: boolean;
|
|
3506
3506
|
icon?: string;
|
|
3507
|
-
lockObject?:
|
|
3507
|
+
lockObject?: INSPECTOR.SharedUIComponents.LockObject;
|
|
3508
3508
|
iconLabel?: string;
|
|
3509
3509
|
onValueChange?: (value: string) => void;
|
|
3510
3510
|
}
|
|
@@ -3518,17 +3518,17 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3518
3518
|
declare module INSPECTOR {
|
|
3519
3519
|
|
|
3520
3520
|
}
|
|
3521
|
-
declare module
|
|
3521
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3522
3522
|
export interface IColor4LineComponentProps {
|
|
3523
3523
|
label: string;
|
|
3524
3524
|
target?: any;
|
|
3525
3525
|
propertyName: string;
|
|
3526
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
3526
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
3527
3527
|
onChange?: () => void;
|
|
3528
3528
|
isLinear?: boolean;
|
|
3529
3529
|
icon?: string;
|
|
3530
3530
|
iconLabel?: string;
|
|
3531
|
-
lockObject?:
|
|
3531
|
+
lockObject?: INSPECTOR.SharedUIComponents.LockObject;
|
|
3532
3532
|
}
|
|
3533
3533
|
export class Color4LineComponent extends React.Component<IColor4LineComponentProps> {
|
|
3534
3534
|
render(): JSX.Element;
|
|
@@ -3540,17 +3540,17 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3540
3540
|
declare module INSPECTOR {
|
|
3541
3541
|
|
|
3542
3542
|
}
|
|
3543
|
-
declare module
|
|
3543
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3544
3544
|
export interface IColorLineComponentProps {
|
|
3545
3545
|
label: string;
|
|
3546
3546
|
target?: any;
|
|
3547
3547
|
propertyName: string;
|
|
3548
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
3548
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
3549
3549
|
onChange?: () => void;
|
|
3550
3550
|
isLinear?: boolean;
|
|
3551
3551
|
icon?: string;
|
|
3552
3552
|
iconLabel?: string;
|
|
3553
|
-
lockObject?:
|
|
3553
|
+
lockObject?: INSPECTOR.SharedUIComponents.LockObject;
|
|
3554
3554
|
disableAlpha?: boolean;
|
|
3555
3555
|
}
|
|
3556
3556
|
interface IColorLineComponentState {
|
|
@@ -3582,7 +3582,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3582
3582
|
declare module INSPECTOR {
|
|
3583
3583
|
|
|
3584
3584
|
}
|
|
3585
|
-
declare module
|
|
3585
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3586
3586
|
export interface IColorPickerComponentProps {
|
|
3587
3587
|
value: BABYLON.Color4 | BABYLON.Color3;
|
|
3588
3588
|
linearHint?: boolean;
|
|
@@ -3616,7 +3616,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3616
3616
|
declare module INSPECTOR {
|
|
3617
3617
|
|
|
3618
3618
|
}
|
|
3619
|
-
declare module
|
|
3619
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3620
3620
|
export interface IButtonLineComponentProps {
|
|
3621
3621
|
data: string;
|
|
3622
3622
|
tooltip: string;
|
|
@@ -3632,7 +3632,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3632
3632
|
declare module INSPECTOR {
|
|
3633
3633
|
|
|
3634
3634
|
}
|
|
3635
|
-
declare module
|
|
3635
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3636
3636
|
interface IFileButtonLineComponentProps {
|
|
3637
3637
|
label: string;
|
|
3638
3638
|
onClick: (file: File) => void;
|
|
@@ -3655,7 +3655,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3655
3655
|
declare module INSPECTOR {
|
|
3656
3656
|
|
|
3657
3657
|
}
|
|
3658
|
-
declare module
|
|
3658
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3659
3659
|
interface IFileMultipleButtonLineComponentProps {
|
|
3660
3660
|
label: string;
|
|
3661
3661
|
onClick: (event: any) => void;
|
|
@@ -3678,15 +3678,15 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3678
3678
|
declare module INSPECTOR {
|
|
3679
3679
|
|
|
3680
3680
|
}
|
|
3681
|
-
declare module
|
|
3681
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3682
3682
|
interface IFloatLineComponentProps {
|
|
3683
3683
|
label: string;
|
|
3684
3684
|
target: any;
|
|
3685
3685
|
propertyName: string;
|
|
3686
|
-
lockObject?:
|
|
3686
|
+
lockObject?: INSPECTOR.SharedUIComponents.LockObject;
|
|
3687
3687
|
onChange?: (newValue: number) => void;
|
|
3688
3688
|
isInteger?: boolean;
|
|
3689
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
3689
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
3690
3690
|
additionalClass?: string;
|
|
3691
3691
|
step?: string;
|
|
3692
3692
|
digits?: number;
|
|
@@ -3731,16 +3731,16 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3731
3731
|
declare module INSPECTOR {
|
|
3732
3732
|
|
|
3733
3733
|
}
|
|
3734
|
-
declare module
|
|
3734
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3735
3735
|
interface IHexLineComponentProps {
|
|
3736
3736
|
label: string;
|
|
3737
3737
|
target: any;
|
|
3738
3738
|
propertyName: string;
|
|
3739
|
-
lockObject?:
|
|
3739
|
+
lockObject?: INSPECTOR.SharedUIComponents.LockObject;
|
|
3740
3740
|
onChange?: (newValue: number) => void;
|
|
3741
3741
|
isInteger?: boolean;
|
|
3742
3742
|
replaySourceReplacement?: string;
|
|
3743
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
3743
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
3744
3744
|
additionalClass?: string;
|
|
3745
3745
|
step?: string;
|
|
3746
3746
|
digits?: number;
|
|
@@ -3774,7 +3774,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3774
3774
|
declare module INSPECTOR {
|
|
3775
3775
|
|
|
3776
3776
|
}
|
|
3777
|
-
declare module
|
|
3777
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3778
3778
|
export interface IIconButtonLineComponentProps {
|
|
3779
3779
|
icon: string;
|
|
3780
3780
|
onClick: () => void;
|
|
@@ -3792,7 +3792,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3792
3792
|
declare module INSPECTOR {
|
|
3793
3793
|
|
|
3794
3794
|
}
|
|
3795
|
-
declare module
|
|
3795
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3796
3796
|
interface IIconComponentProps {
|
|
3797
3797
|
icon: string;
|
|
3798
3798
|
label?: string;
|
|
@@ -3807,7 +3807,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3807
3807
|
declare module INSPECTOR {
|
|
3808
3808
|
|
|
3809
3809
|
}
|
|
3810
|
-
declare module
|
|
3810
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3811
3811
|
interface IIndentedTextLineComponentProps {
|
|
3812
3812
|
value?: string;
|
|
3813
3813
|
color?: string;
|
|
@@ -3829,7 +3829,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3829
3829
|
declare module INSPECTOR {
|
|
3830
3830
|
|
|
3831
3831
|
}
|
|
3832
|
-
declare module
|
|
3832
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3833
3833
|
interface IInputArrowsComponentProps {
|
|
3834
3834
|
incrementValue: (amount: number) => void;
|
|
3835
3835
|
setDragging: (dragging: boolean) => void;
|
|
@@ -3848,7 +3848,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3848
3848
|
declare module INSPECTOR {
|
|
3849
3849
|
|
|
3850
3850
|
}
|
|
3851
|
-
declare module
|
|
3851
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3852
3852
|
export interface ISelectedLineContainer {
|
|
3853
3853
|
selectedLineContainerTitles: Array<string>;
|
|
3854
3854
|
selectedLineContainerTitlesNoFocus: Array<string>;
|
|
@@ -3860,9 +3860,9 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3860
3860
|
declare module INSPECTOR {
|
|
3861
3861
|
|
|
3862
3862
|
}
|
|
3863
|
-
declare module
|
|
3863
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3864
3864
|
interface ILineContainerComponentProps {
|
|
3865
|
-
selection?:
|
|
3865
|
+
selection?: INSPECTOR.SharedUIComponents.ISelectedLineContainer;
|
|
3866
3866
|
title: string;
|
|
3867
3867
|
children: any[] | any;
|
|
3868
3868
|
closed?: boolean;
|
|
@@ -3884,7 +3884,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3884
3884
|
declare module INSPECTOR {
|
|
3885
3885
|
|
|
3886
3886
|
}
|
|
3887
|
-
declare module
|
|
3887
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3888
3888
|
interface ILinkButtonComponentProps {
|
|
3889
3889
|
label: string;
|
|
3890
3890
|
buttonLabel: string;
|
|
@@ -3905,7 +3905,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3905
3905
|
declare module INSPECTOR {
|
|
3906
3906
|
|
|
3907
3907
|
}
|
|
3908
|
-
declare module
|
|
3908
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3909
3909
|
interface IMessageLineComponentProps {
|
|
3910
3910
|
text: string;
|
|
3911
3911
|
color?: string;
|
|
@@ -3922,7 +3922,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3922
3922
|
declare module INSPECTOR {
|
|
3923
3923
|
|
|
3924
3924
|
}
|
|
3925
|
-
declare module
|
|
3925
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3926
3926
|
interface INumericInputComponentProps {
|
|
3927
3927
|
label: string;
|
|
3928
3928
|
value: number;
|
|
@@ -3954,7 +3954,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3954
3954
|
declare module INSPECTOR {
|
|
3955
3955
|
|
|
3956
3956
|
}
|
|
3957
|
-
declare module
|
|
3957
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3958
3958
|
export var Null_Value: number;
|
|
3959
3959
|
export interface IOptionsLineComponentProps {
|
|
3960
3960
|
label: string;
|
|
@@ -3964,7 +3964,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3964
3964
|
noDirectUpdate?: boolean;
|
|
3965
3965
|
onSelect?: (value: number) => void;
|
|
3966
3966
|
extractValue?: () => number;
|
|
3967
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
3967
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
3968
3968
|
allowNullValue?: boolean;
|
|
3969
3969
|
icon?: string;
|
|
3970
3970
|
iconLabel?: string;
|
|
@@ -3990,7 +3990,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
3990
3990
|
declare module INSPECTOR {
|
|
3991
3991
|
|
|
3992
3992
|
}
|
|
3993
|
-
declare module
|
|
3993
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
3994
3994
|
export class Popup {
|
|
3995
3995
|
static CreatePopup(title: string, windowVariableName: string, width?: number, height?: number): HTMLDivElement | null;
|
|
3996
3996
|
private static _CopyStyles;
|
|
@@ -4002,7 +4002,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4002
4002
|
declare module INSPECTOR {
|
|
4003
4003
|
|
|
4004
4004
|
}
|
|
4005
|
-
declare module
|
|
4005
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4006
4006
|
interface IRadioButtonLineComponentProps {
|
|
4007
4007
|
onSelectionChangedObservable: BABYLON.Observable<RadioButtonLineComponent>;
|
|
4008
4008
|
label: string;
|
|
@@ -4028,7 +4028,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4028
4028
|
declare module INSPECTOR {
|
|
4029
4029
|
|
|
4030
4030
|
}
|
|
4031
|
-
declare module
|
|
4031
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4032
4032
|
interface ISliderLineComponentProps {
|
|
4033
4033
|
label: string;
|
|
4034
4034
|
target?: any;
|
|
@@ -4040,12 +4040,12 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4040
4040
|
useEuler?: boolean;
|
|
4041
4041
|
onChange?: (value: number) => void;
|
|
4042
4042
|
onInput?: (value: number) => void;
|
|
4043
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4043
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4044
4044
|
decimalCount?: number;
|
|
4045
4045
|
margin?: boolean;
|
|
4046
4046
|
icon?: string;
|
|
4047
4047
|
iconLabel?: string;
|
|
4048
|
-
lockObject?:
|
|
4048
|
+
lockObject?: INSPECTOR.SharedUIComponents.LockObject;
|
|
4049
4049
|
unit?: React.ReactNode;
|
|
4050
4050
|
}
|
|
4051
4051
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
@@ -4068,7 +4068,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4068
4068
|
declare module INSPECTOR {
|
|
4069
4069
|
|
|
4070
4070
|
}
|
|
4071
|
-
declare module
|
|
4071
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4072
4072
|
export const conflictingValuesPlaceholder = "\u2014";
|
|
4073
4073
|
/**
|
|
4074
4074
|
*
|
|
@@ -4077,7 +4077,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4077
4077
|
* @param getProperty
|
|
4078
4078
|
* @returns a proxy object that can be passed as a target into the input
|
|
4079
4079
|
*/
|
|
4080
|
-
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<
|
|
4080
|
+
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
4081
4081
|
|
|
4082
4082
|
|
|
4083
4083
|
|
|
@@ -4085,15 +4085,15 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4085
4085
|
declare module INSPECTOR {
|
|
4086
4086
|
|
|
4087
4087
|
}
|
|
4088
|
-
declare module
|
|
4088
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4089
4089
|
export interface ITextInputLineComponentProps {
|
|
4090
4090
|
label?: string;
|
|
4091
|
-
lockObject?:
|
|
4091
|
+
lockObject?: INSPECTOR.SharedUIComponents.LockObject;
|
|
4092
4092
|
target?: any;
|
|
4093
4093
|
propertyName?: string;
|
|
4094
4094
|
value?: string;
|
|
4095
4095
|
onChange?: (value: string) => void;
|
|
4096
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4096
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4097
4097
|
icon?: string;
|
|
4098
4098
|
iconLabel?: string;
|
|
4099
4099
|
noUnderline?: boolean;
|
|
@@ -4134,7 +4134,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4134
4134
|
declare module INSPECTOR {
|
|
4135
4135
|
|
|
4136
4136
|
}
|
|
4137
|
-
declare module
|
|
4137
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4138
4138
|
interface ITextLineComponentProps {
|
|
4139
4139
|
label?: string;
|
|
4140
4140
|
value?: string;
|
|
@@ -4161,7 +4161,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4161
4161
|
declare module INSPECTOR {
|
|
4162
4162
|
|
|
4163
4163
|
}
|
|
4164
|
-
declare module
|
|
4164
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4165
4165
|
/// <reference types="react" />
|
|
4166
4166
|
interface IUnitButtonProps {
|
|
4167
4167
|
unit: string;
|
|
@@ -4176,7 +4176,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4176
4176
|
declare module INSPECTOR {
|
|
4177
4177
|
|
|
4178
4178
|
}
|
|
4179
|
-
declare module
|
|
4179
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4180
4180
|
interface IValueLineComponentProps {
|
|
4181
4181
|
label: string;
|
|
4182
4182
|
value: number;
|
|
@@ -4197,14 +4197,14 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4197
4197
|
declare module INSPECTOR {
|
|
4198
4198
|
|
|
4199
4199
|
}
|
|
4200
|
-
declare module
|
|
4200
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4201
4201
|
interface IVector2LineComponentProps {
|
|
4202
4202
|
label: string;
|
|
4203
4203
|
target: any;
|
|
4204
4204
|
propertyName: string;
|
|
4205
4205
|
step?: number;
|
|
4206
4206
|
onChange?: (newvalue: BABYLON.Vector2) => void;
|
|
4207
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4207
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4208
4208
|
icon?: string;
|
|
4209
4209
|
iconLabel?: string;
|
|
4210
4210
|
}
|
|
@@ -4234,7 +4234,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4234
4234
|
declare module INSPECTOR {
|
|
4235
4235
|
|
|
4236
4236
|
}
|
|
4237
|
-
declare module
|
|
4237
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4238
4238
|
interface IVector3LineComponentProps {
|
|
4239
4239
|
label: string;
|
|
4240
4240
|
target: any;
|
|
@@ -4242,7 +4242,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4242
4242
|
step?: number;
|
|
4243
4243
|
onChange?: (newvalue: BABYLON.Vector3) => void;
|
|
4244
4244
|
useEuler?: boolean;
|
|
4245
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4245
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4246
4246
|
noSlider?: boolean;
|
|
4247
4247
|
icon?: string;
|
|
4248
4248
|
iconLabel?: string;
|
|
@@ -4276,7 +4276,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4276
4276
|
declare module INSPECTOR {
|
|
4277
4277
|
|
|
4278
4278
|
}
|
|
4279
|
-
declare module
|
|
4279
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4280
4280
|
interface IVector4LineComponentProps {
|
|
4281
4281
|
label: string;
|
|
4282
4282
|
target: any;
|
|
@@ -4284,7 +4284,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4284
4284
|
step?: number;
|
|
4285
4285
|
onChange?: (newvalue: BABYLON.Vector4) => void;
|
|
4286
4286
|
useEuler?: boolean;
|
|
4287
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4287
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4288
4288
|
icon?: string;
|
|
4289
4289
|
iconLabel?: string;
|
|
4290
4290
|
}
|
|
@@ -4318,7 +4318,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4318
4318
|
declare module INSPECTOR {
|
|
4319
4319
|
|
|
4320
4320
|
}
|
|
4321
|
-
declare module
|
|
4321
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4322
4322
|
export class PropertyChangedEvent {
|
|
4323
4323
|
object: any;
|
|
4324
4324
|
property: string;
|
|
@@ -4333,7 +4333,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4333
4333
|
declare module INSPECTOR {
|
|
4334
4334
|
|
|
4335
4335
|
}
|
|
4336
|
-
declare module
|
|
4336
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4337
4337
|
export class StringTools {
|
|
4338
4338
|
private static _SaveAs;
|
|
4339
4339
|
private static _Click;
|
|
@@ -4352,11 +4352,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4352
4352
|
declare module INSPECTOR {
|
|
4353
4353
|
|
|
4354
4354
|
}
|
|
4355
|
-
declare module
|
|
4355
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4356
4356
|
interface ICheckboxPropertyGridComponentProps {
|
|
4357
4357
|
checkbox: BABYLON.GUI.Checkbox;
|
|
4358
|
-
lockObject:
|
|
4359
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4358
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4359
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4360
4360
|
}
|
|
4361
4361
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
4362
4362
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
@@ -4369,11 +4369,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4369
4369
|
declare module INSPECTOR {
|
|
4370
4370
|
|
|
4371
4371
|
}
|
|
4372
|
-
declare module
|
|
4372
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4373
4373
|
interface IColorPickerPropertyGridComponentProps {
|
|
4374
4374
|
colorPicker: BABYLON.GUI.ColorPicker;
|
|
4375
|
-
lockObject:
|
|
4376
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4375
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4376
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4377
4377
|
}
|
|
4378
4378
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
4379
4379
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
@@ -4386,12 +4386,12 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4386
4386
|
declare module INSPECTOR {
|
|
4387
4387
|
|
|
4388
4388
|
}
|
|
4389
|
-
declare module
|
|
4389
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4390
4390
|
interface ICommonControlPropertyGridComponentProps {
|
|
4391
4391
|
controls?: BABYLON.GUI.Control[];
|
|
4392
4392
|
control?: BABYLON.GUI.Control;
|
|
4393
|
-
lockObject:
|
|
4394
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4393
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4394
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4395
4395
|
}
|
|
4396
4396
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps> {
|
|
4397
4397
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
|
@@ -4405,11 +4405,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4405
4405
|
declare module INSPECTOR {
|
|
4406
4406
|
|
|
4407
4407
|
}
|
|
4408
|
-
declare module
|
|
4408
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4409
4409
|
interface IControlPropertyGridComponentProps {
|
|
4410
4410
|
control: BABYLON.GUI.Control;
|
|
4411
|
-
lockObject:
|
|
4412
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4411
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4412
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4413
4413
|
}
|
|
4414
4414
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
4415
4415
|
constructor(props: IControlPropertyGridComponentProps);
|
|
@@ -4422,11 +4422,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4422
4422
|
declare module INSPECTOR {
|
|
4423
4423
|
|
|
4424
4424
|
}
|
|
4425
|
-
declare module
|
|
4425
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4426
4426
|
interface IEllipsePropertyGridComponentProps {
|
|
4427
4427
|
ellipse: BABYLON.GUI.Ellipse;
|
|
4428
|
-
lockObject:
|
|
4429
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4428
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4429
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4430
4430
|
}
|
|
4431
4431
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
4432
4432
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
@@ -4439,11 +4439,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4439
4439
|
declare module INSPECTOR {
|
|
4440
4440
|
|
|
4441
4441
|
}
|
|
4442
|
-
declare module
|
|
4442
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4443
4443
|
interface IGridPropertyGridComponentProps {
|
|
4444
4444
|
grid: BABYLON.GUI.Grid;
|
|
4445
|
-
lockObject:
|
|
4446
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4445
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4446
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4447
4447
|
}
|
|
4448
4448
|
export class GridPropertyGridComponent extends React.Component<IGridPropertyGridComponentProps> {
|
|
4449
4449
|
constructor(props: IGridPropertyGridComponentProps);
|
|
@@ -4458,11 +4458,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4458
4458
|
declare module INSPECTOR {
|
|
4459
4459
|
|
|
4460
4460
|
}
|
|
4461
|
-
declare module
|
|
4461
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4462
4462
|
interface IImageBasedSliderPropertyGridComponentProps {
|
|
4463
4463
|
imageBasedSlider: BABYLON.GUI.ImageBasedSlider;
|
|
4464
|
-
lockObject:
|
|
4465
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4464
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4465
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4466
4466
|
}
|
|
4467
4467
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
4468
4468
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
@@ -4475,11 +4475,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4475
4475
|
declare module INSPECTOR {
|
|
4476
4476
|
|
|
4477
4477
|
}
|
|
4478
|
-
declare module
|
|
4478
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4479
4479
|
interface IImagePropertyGridComponentProps {
|
|
4480
4480
|
image: BABYLON.GUI.Image;
|
|
4481
|
-
lockObject:
|
|
4482
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4481
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4482
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4483
4483
|
}
|
|
4484
4484
|
export class ImagePropertyGridComponent extends React.Component<IImagePropertyGridComponentProps> {
|
|
4485
4485
|
constructor(props: IImagePropertyGridComponentProps);
|
|
@@ -4492,11 +4492,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4492
4492
|
declare module INSPECTOR {
|
|
4493
4493
|
|
|
4494
4494
|
}
|
|
4495
|
-
declare module
|
|
4495
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4496
4496
|
interface IInputTextPropertyGridComponentProps {
|
|
4497
4497
|
inputText: BABYLON.GUI.InputText;
|
|
4498
|
-
lockObject:
|
|
4499
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4498
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4499
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4500
4500
|
}
|
|
4501
4501
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
4502
4502
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
@@ -4509,11 +4509,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4509
4509
|
declare module INSPECTOR {
|
|
4510
4510
|
|
|
4511
4511
|
}
|
|
4512
|
-
declare module
|
|
4512
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4513
4513
|
interface ILinePropertyGridComponentProps {
|
|
4514
4514
|
line: BABYLON.GUI.Line;
|
|
4515
|
-
lockObject:
|
|
4516
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4515
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4516
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4517
4517
|
}
|
|
4518
4518
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
4519
4519
|
constructor(props: ILinePropertyGridComponentProps);
|
|
@@ -4527,11 +4527,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4527
4527
|
declare module INSPECTOR {
|
|
4528
4528
|
|
|
4529
4529
|
}
|
|
4530
|
-
declare module
|
|
4530
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4531
4531
|
interface IRadioButtonPropertyGridComponentProps {
|
|
4532
4532
|
radioButtons: BABYLON.GUI.RadioButton[];
|
|
4533
|
-
lockObject:
|
|
4534
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4533
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4534
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4535
4535
|
}
|
|
4536
4536
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
4537
4537
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
@@ -4544,11 +4544,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4544
4544
|
declare module INSPECTOR {
|
|
4545
4545
|
|
|
4546
4546
|
}
|
|
4547
|
-
declare module
|
|
4547
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4548
4548
|
interface IRectanglePropertyGridComponentProps {
|
|
4549
4549
|
rectangle: BABYLON.GUI.Rectangle;
|
|
4550
|
-
lockObject:
|
|
4551
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4550
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4551
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4552
4552
|
}
|
|
4553
4553
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
4554
4554
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
@@ -4561,11 +4561,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4561
4561
|
declare module INSPECTOR {
|
|
4562
4562
|
|
|
4563
4563
|
}
|
|
4564
|
-
declare module
|
|
4564
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4565
4565
|
interface IScrollViewerPropertyGridComponentProps {
|
|
4566
4566
|
scrollViewer: BABYLON.GUI.ScrollViewer;
|
|
4567
|
-
lockObject:
|
|
4568
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4567
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4568
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4569
4569
|
}
|
|
4570
4570
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
4571
4571
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
@@ -4578,11 +4578,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4578
4578
|
declare module INSPECTOR {
|
|
4579
4579
|
|
|
4580
4580
|
}
|
|
4581
|
-
declare module
|
|
4581
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4582
4582
|
interface ISliderPropertyGridComponentProps {
|
|
4583
4583
|
slider: BABYLON.GUI.Slider;
|
|
4584
|
-
lockObject:
|
|
4585
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4584
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4585
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4586
4586
|
}
|
|
4587
4587
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
4588
4588
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
@@ -4595,11 +4595,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4595
4595
|
declare module INSPECTOR {
|
|
4596
4596
|
|
|
4597
4597
|
}
|
|
4598
|
-
declare module
|
|
4598
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4599
4599
|
interface IStackPanelPropertyGridComponentProps {
|
|
4600
4600
|
stackPanel: BABYLON.GUI.StackPanel;
|
|
4601
|
-
lockObject:
|
|
4602
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4601
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4602
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4603
4603
|
}
|
|
4604
4604
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
4605
4605
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
@@ -4612,11 +4612,11 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4612
4612
|
declare module INSPECTOR {
|
|
4613
4613
|
|
|
4614
4614
|
}
|
|
4615
|
-
declare module
|
|
4615
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4616
4616
|
interface ITextBlockPropertyGridComponentProps {
|
|
4617
4617
|
textBlock: BABYLON.GUI.TextBlock;
|
|
4618
|
-
lockObject:
|
|
4619
|
-
onPropertyChangedObservable?: BABYLON.Observable<
|
|
4618
|
+
lockObject: INSPECTOR.SharedUIComponents.LockObject;
|
|
4619
|
+
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
4620
4620
|
}
|
|
4621
4621
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
4622
4622
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
@@ -4629,7 +4629,7 @@ declare module BABYLON.SharedUIComponents {
|
|
|
4629
4629
|
declare module INSPECTOR {
|
|
4630
4630
|
|
|
4631
4631
|
}
|
|
4632
|
-
declare module
|
|
4632
|
+
declare module INSPECTOR.SharedUIComponents {
|
|
4633
4633
|
/**
|
|
4634
4634
|
* Class used to provide lock mechanism
|
|
4635
4635
|
*/
|