babylonjs-node-editor 5.0.3 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/babylon.nodeEditor.d.ts +441 -108
- package/babylon.nodeEditor.js +1 -1
- package/babylon.nodeEditor.js.map +1 -1
- package/babylon.nodeEditor.max.js +79 -45
- package/babylon.nodeEditor.max.js.map +1 -1
- package/babylon.nodeEditor.module.d.ts +444 -108
- package/package.json +2 -2
|
@@ -679,6 +679,7 @@ export class GraphCanvasComponent extends React.Component<IGraphCanvasComponentP
|
|
|
679
679
|
get svgCanvas(): HTMLElement;
|
|
680
680
|
get selectionContainer(): HTMLDivElement;
|
|
681
681
|
get frameContainer(): HTMLDivElement;
|
|
682
|
+
private _selectedFrameAndNodesConflict;
|
|
682
683
|
constructor(props: IGraphCanvasComponentProps);
|
|
683
684
|
static _RefreshNode: (node: GraphNode, visitedNodes?: Set<GraphNode> | undefined, visitedLinks?: Set<NodeLink> | undefined) => void;
|
|
684
685
|
getGridPosition(position: number, useCeil?: boolean): number;
|
|
@@ -921,6 +922,7 @@ export class GraphNode {
|
|
|
921
922
|
get enclosingFrameId(): number;
|
|
922
923
|
set enclosingFrameId(value: number);
|
|
923
924
|
set isSelected(value: boolean);
|
|
925
|
+
setIsSelected(value: boolean, marqueeSelection: boolean): void;
|
|
924
926
|
constructor(block: NodeMaterialBlock, globalState: GlobalState);
|
|
925
927
|
isOverlappingFrame(frame: GraphFrame): boolean;
|
|
926
928
|
getPortForConnectionPoint(point: NodeMaterialConnectionPoint): NodePort | null;
|
|
@@ -1305,6 +1307,7 @@ import { NodeMaterialModes } from "babylonjs/Materials/Node/Enums/nodeMaterialMo
|
|
|
1305
1307
|
export class ISelectionChangedOptions {
|
|
1306
1308
|
selection: Nullable<GraphNode | NodeLink | GraphFrame | NodePort | FramePortData>;
|
|
1307
1309
|
forceKeepSelection?: boolean;
|
|
1310
|
+
marqueeSelection?: boolean;
|
|
1308
1311
|
}
|
|
1309
1312
|
export class GlobalState {
|
|
1310
1313
|
nodeMaterial: NodeMaterial;
|
|
@@ -3862,6 +3865,7 @@ declare module BABYLON.NodeEditor {
|
|
|
3862
3865
|
get svgCanvas(): HTMLElement;
|
|
3863
3866
|
get selectionContainer(): HTMLDivElement;
|
|
3864
3867
|
get frameContainer(): HTMLDivElement;
|
|
3868
|
+
private _selectedFrameAndNodesConflict;
|
|
3865
3869
|
constructor(props: IGraphCanvasComponentProps);
|
|
3866
3870
|
static _RefreshNode: (node: GraphNode, visitedNodes?: Set<GraphNode> | undefined, visitedLinks?: Set<NodeLink> | undefined) => void;
|
|
3867
3871
|
getGridPosition(position: number, useCeil?: boolean): number;
|
|
@@ -4087,6 +4091,7 @@ declare module BABYLON.NodeEditor {
|
|
|
4087
4091
|
get enclosingFrameId(): number;
|
|
4088
4092
|
set enclosingFrameId(value: number);
|
|
4089
4093
|
set isSelected(value: boolean);
|
|
4094
|
+
setIsSelected(value: boolean, marqueeSelection: boolean): void;
|
|
4090
4095
|
constructor(block: BABYLON.NodeMaterialBlock, globalState: GlobalState);
|
|
4091
4096
|
isOverlappingFrame(frame: GraphFrame): boolean;
|
|
4092
4097
|
getPortForConnectionPoint(point: BABYLON.NodeMaterialConnectionPoint): NodePort | null;
|
|
@@ -4369,6 +4374,7 @@ declare module BABYLON.NodeEditor {
|
|
|
4369
4374
|
export class ISelectionChangedOptions {
|
|
4370
4375
|
selection: BABYLON.Nullable<GraphNode | NodeLink | GraphFrame | NodePort | FramePortData>;
|
|
4371
4376
|
forceKeepSelection?: boolean;
|
|
4377
|
+
marqueeSelection?: boolean;
|
|
4372
4378
|
}
|
|
4373
4379
|
export class GlobalState {
|
|
4374
4380
|
nodeMaterial: BABYLON.NodeMaterial;
|
|
@@ -5091,7 +5097,10 @@ declare module BABYLON.NodeEditor {
|
|
|
5091
5097
|
}
|
|
5092
5098
|
|
|
5093
5099
|
|
|
5094
|
-
|
|
5100
|
+
|
|
5101
|
+
}
|
|
5102
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5103
|
+
export interface IColorComponentEntryProps {
|
|
5095
5104
|
value: number;
|
|
5096
5105
|
label: string;
|
|
5097
5106
|
max?: number;
|
|
@@ -5106,7 +5115,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5106
5115
|
}
|
|
5107
5116
|
|
|
5108
5117
|
|
|
5109
|
-
|
|
5118
|
+
|
|
5119
|
+
}
|
|
5120
|
+
declare module BABYLON.NodeEditor {
|
|
5121
|
+
|
|
5122
|
+
}
|
|
5123
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5124
|
+
/**
|
|
5110
5125
|
* Interface used to specify creation options for color picker
|
|
5111
5126
|
*/
|
|
5112
5127
|
export interface IColorPickerProps {
|
|
@@ -5146,7 +5161,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5146
5161
|
}
|
|
5147
5162
|
|
|
5148
5163
|
|
|
5149
|
-
|
|
5164
|
+
|
|
5165
|
+
}
|
|
5166
|
+
declare module BABYLON.NodeEditor {
|
|
5167
|
+
|
|
5168
|
+
}
|
|
5169
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5170
|
+
export interface IHexColorProps {
|
|
5150
5171
|
value: string;
|
|
5151
5172
|
expectedLength: number;
|
|
5152
5173
|
onChange: (value: string) => void;
|
|
@@ -5163,7 +5184,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5163
5184
|
}
|
|
5164
5185
|
|
|
5165
5186
|
|
|
5166
|
-
|
|
5187
|
+
|
|
5188
|
+
}
|
|
5189
|
+
declare module BABYLON.NodeEditor {
|
|
5190
|
+
|
|
5191
|
+
}
|
|
5192
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5193
|
+
export interface IBooleanLineComponentProps {
|
|
5167
5194
|
label: string;
|
|
5168
5195
|
value: boolean;
|
|
5169
5196
|
icon?: string;
|
|
@@ -5175,7 +5202,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5175
5202
|
}
|
|
5176
5203
|
|
|
5177
5204
|
|
|
5178
|
-
|
|
5205
|
+
|
|
5206
|
+
}
|
|
5207
|
+
declare module BABYLON.NodeEditor {
|
|
5208
|
+
|
|
5209
|
+
}
|
|
5210
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5211
|
+
export interface IButtonLineComponentProps {
|
|
5179
5212
|
label: string;
|
|
5180
5213
|
onClick: () => void;
|
|
5181
5214
|
icon?: string;
|
|
@@ -5187,14 +5220,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5187
5220
|
}
|
|
5188
5221
|
|
|
5189
5222
|
|
|
5190
|
-
|
|
5223
|
+
|
|
5224
|
+
}
|
|
5225
|
+
declare module BABYLON.NodeEditor {
|
|
5226
|
+
|
|
5227
|
+
}
|
|
5228
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5229
|
+
export interface ICheckBoxLineComponentProps {
|
|
5191
5230
|
label?: string;
|
|
5192
5231
|
target?: any;
|
|
5193
5232
|
propertyName?: string;
|
|
5194
5233
|
isSelected?: () => boolean;
|
|
5195
5234
|
onSelect?: (value: boolean) => void;
|
|
5196
5235
|
onValueChanged?: () => void;
|
|
5197
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5236
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5198
5237
|
disabled?: boolean;
|
|
5199
5238
|
icon?: string;
|
|
5200
5239
|
iconLabel?: string;
|
|
@@ -5221,14 +5260,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5221
5260
|
}
|
|
5222
5261
|
|
|
5223
5262
|
|
|
5224
|
-
|
|
5263
|
+
|
|
5264
|
+
}
|
|
5265
|
+
declare module BABYLON.NodeEditor {
|
|
5266
|
+
|
|
5267
|
+
}
|
|
5268
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5269
|
+
export interface IColor3LineComponentProps {
|
|
5225
5270
|
label: string;
|
|
5226
5271
|
target: any;
|
|
5227
5272
|
propertyName: string;
|
|
5228
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5273
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5229
5274
|
isLinear?: boolean;
|
|
5230
5275
|
icon?: string;
|
|
5231
|
-
lockObject?: LockObject;
|
|
5276
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5232
5277
|
iconLabel?: string;
|
|
5233
5278
|
onValueChange?: (value: string) => void;
|
|
5234
5279
|
}
|
|
@@ -5237,32 +5282,44 @@ declare module BABYLON.NodeEditor {
|
|
|
5237
5282
|
}
|
|
5238
5283
|
|
|
5239
5284
|
|
|
5240
|
-
|
|
5285
|
+
|
|
5286
|
+
}
|
|
5287
|
+
declare module BABYLON.NodeEditor {
|
|
5288
|
+
|
|
5289
|
+
}
|
|
5290
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5291
|
+
export interface IColor4LineComponentProps {
|
|
5241
5292
|
label: string;
|
|
5242
5293
|
target?: any;
|
|
5243
5294
|
propertyName: string;
|
|
5244
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5295
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5245
5296
|
onChange?: () => void;
|
|
5246
5297
|
isLinear?: boolean;
|
|
5247
5298
|
icon?: string;
|
|
5248
5299
|
iconLabel?: string;
|
|
5249
|
-
lockObject?: LockObject;
|
|
5300
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5250
5301
|
}
|
|
5251
5302
|
export class Color4LineComponent extends React.Component<IColor4LineComponentProps> {
|
|
5252
5303
|
render(): JSX.Element;
|
|
5253
5304
|
}
|
|
5254
5305
|
|
|
5255
5306
|
|
|
5256
|
-
|
|
5307
|
+
|
|
5308
|
+
}
|
|
5309
|
+
declare module BABYLON.NodeEditor {
|
|
5310
|
+
|
|
5311
|
+
}
|
|
5312
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5313
|
+
export interface IColorLineComponentProps {
|
|
5257
5314
|
label: string;
|
|
5258
5315
|
target?: any;
|
|
5259
5316
|
propertyName: string;
|
|
5260
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5317
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5261
5318
|
onChange?: () => void;
|
|
5262
5319
|
isLinear?: boolean;
|
|
5263
5320
|
icon?: string;
|
|
5264
5321
|
iconLabel?: string;
|
|
5265
|
-
lockObject?: LockObject;
|
|
5322
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5266
5323
|
disableAlpha?: boolean;
|
|
5267
5324
|
}
|
|
5268
5325
|
interface IColorLineComponentState {
|
|
@@ -5289,7 +5346,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5289
5346
|
}
|
|
5290
5347
|
|
|
5291
5348
|
|
|
5292
|
-
|
|
5349
|
+
|
|
5350
|
+
}
|
|
5351
|
+
declare module BABYLON.NodeEditor {
|
|
5352
|
+
|
|
5353
|
+
}
|
|
5354
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5355
|
+
export interface IColorPickerComponentProps {
|
|
5293
5356
|
value: BABYLON.Color4 | BABYLON.Color3;
|
|
5294
5357
|
linearHint?: boolean;
|
|
5295
5358
|
onColorChanged: (newOne: string) => void;
|
|
@@ -5317,7 +5380,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5317
5380
|
}
|
|
5318
5381
|
|
|
5319
5382
|
|
|
5320
|
-
|
|
5383
|
+
|
|
5384
|
+
}
|
|
5385
|
+
declare module BABYLON.NodeEditor {
|
|
5386
|
+
|
|
5387
|
+
}
|
|
5388
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5389
|
+
export interface IButtonLineComponentProps {
|
|
5321
5390
|
data: string;
|
|
5322
5391
|
tooltip: string;
|
|
5323
5392
|
}
|
|
@@ -5327,7 +5396,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5327
5396
|
}
|
|
5328
5397
|
|
|
5329
5398
|
|
|
5330
|
-
|
|
5399
|
+
|
|
5400
|
+
}
|
|
5401
|
+
declare module BABYLON.NodeEditor {
|
|
5402
|
+
|
|
5403
|
+
}
|
|
5404
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5405
|
+
interface IFileButtonLineComponentProps {
|
|
5331
5406
|
label: string;
|
|
5332
5407
|
onClick: (file: File) => void;
|
|
5333
5408
|
accept: string;
|
|
@@ -5344,7 +5419,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5344
5419
|
}
|
|
5345
5420
|
|
|
5346
5421
|
|
|
5347
|
-
|
|
5422
|
+
|
|
5423
|
+
}
|
|
5424
|
+
declare module BABYLON.NodeEditor {
|
|
5425
|
+
|
|
5426
|
+
}
|
|
5427
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5428
|
+
interface IFileMultipleButtonLineComponentProps {
|
|
5348
5429
|
label: string;
|
|
5349
5430
|
onClick: (event: any) => void;
|
|
5350
5431
|
accept: string;
|
|
@@ -5361,14 +5442,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5361
5442
|
}
|
|
5362
5443
|
|
|
5363
5444
|
|
|
5364
|
-
|
|
5445
|
+
|
|
5446
|
+
}
|
|
5447
|
+
declare module BABYLON.NodeEditor {
|
|
5448
|
+
|
|
5449
|
+
}
|
|
5450
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5451
|
+
interface IFloatLineComponentProps {
|
|
5365
5452
|
label: string;
|
|
5366
5453
|
target: any;
|
|
5367
5454
|
propertyName: string;
|
|
5368
|
-
lockObject?: LockObject;
|
|
5455
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5369
5456
|
onChange?: (newValue: number) => void;
|
|
5370
5457
|
isInteger?: boolean;
|
|
5371
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5458
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5372
5459
|
additionalClass?: string;
|
|
5373
5460
|
step?: string;
|
|
5374
5461
|
digits?: number;
|
|
@@ -5408,15 +5495,21 @@ declare module BABYLON.NodeEditor {
|
|
|
5408
5495
|
}
|
|
5409
5496
|
|
|
5410
5497
|
|
|
5411
|
-
|
|
5498
|
+
|
|
5499
|
+
}
|
|
5500
|
+
declare module BABYLON.NodeEditor {
|
|
5501
|
+
|
|
5502
|
+
}
|
|
5503
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5504
|
+
interface IHexLineComponentProps {
|
|
5412
5505
|
label: string;
|
|
5413
5506
|
target: any;
|
|
5414
5507
|
propertyName: string;
|
|
5415
|
-
lockObject?: LockObject;
|
|
5508
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5416
5509
|
onChange?: (newValue: number) => void;
|
|
5417
5510
|
isInteger?: boolean;
|
|
5418
5511
|
replaySourceReplacement?: string;
|
|
5419
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5512
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5420
5513
|
additionalClass?: string;
|
|
5421
5514
|
step?: string;
|
|
5422
5515
|
digits?: number;
|
|
@@ -5445,7 +5538,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5445
5538
|
}
|
|
5446
5539
|
|
|
5447
5540
|
|
|
5448
|
-
|
|
5541
|
+
|
|
5542
|
+
}
|
|
5543
|
+
declare module BABYLON.NodeEditor {
|
|
5544
|
+
|
|
5545
|
+
}
|
|
5546
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5547
|
+
export interface IIconButtonLineComponentProps {
|
|
5449
5548
|
icon: string;
|
|
5450
5549
|
onClick: () => void;
|
|
5451
5550
|
tooltip: string;
|
|
@@ -5457,7 +5556,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5457
5556
|
}
|
|
5458
5557
|
|
|
5459
5558
|
|
|
5460
|
-
|
|
5559
|
+
|
|
5560
|
+
}
|
|
5561
|
+
declare module BABYLON.NodeEditor {
|
|
5562
|
+
|
|
5563
|
+
}
|
|
5564
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5565
|
+
interface IIconComponentProps {
|
|
5461
5566
|
icon: string;
|
|
5462
5567
|
label?: string;
|
|
5463
5568
|
}
|
|
@@ -5466,7 +5571,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5466
5571
|
}
|
|
5467
5572
|
|
|
5468
5573
|
|
|
5469
|
-
|
|
5574
|
+
|
|
5575
|
+
}
|
|
5576
|
+
declare module BABYLON.NodeEditor {
|
|
5577
|
+
|
|
5578
|
+
}
|
|
5579
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5580
|
+
interface IIndentedTextLineComponentProps {
|
|
5470
5581
|
value?: string;
|
|
5471
5582
|
color?: string;
|
|
5472
5583
|
underline?: boolean;
|
|
@@ -5482,7 +5593,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5482
5593
|
}
|
|
5483
5594
|
|
|
5484
5595
|
|
|
5485
|
-
|
|
5596
|
+
|
|
5597
|
+
}
|
|
5598
|
+
declare module BABYLON.NodeEditor {
|
|
5599
|
+
|
|
5600
|
+
}
|
|
5601
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5602
|
+
interface IInputArrowsComponentProps {
|
|
5486
5603
|
incrementValue: (amount: number) => void;
|
|
5487
5604
|
setDragging: (dragging: boolean) => void;
|
|
5488
5605
|
}
|
|
@@ -5495,14 +5612,26 @@ declare module BABYLON.NodeEditor {
|
|
|
5495
5612
|
}
|
|
5496
5613
|
|
|
5497
5614
|
|
|
5498
|
-
|
|
5615
|
+
|
|
5616
|
+
}
|
|
5617
|
+
declare module BABYLON.NodeEditor {
|
|
5618
|
+
|
|
5619
|
+
}
|
|
5620
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5621
|
+
export interface ISelectedLineContainer {
|
|
5499
5622
|
selectedLineContainerTitles: Array<string>;
|
|
5500
5623
|
selectedLineContainerTitlesNoFocus: Array<string>;
|
|
5501
5624
|
}
|
|
5502
5625
|
|
|
5503
5626
|
|
|
5504
|
-
|
|
5505
|
-
|
|
5627
|
+
|
|
5628
|
+
}
|
|
5629
|
+
declare module BABYLON.NodeEditor {
|
|
5630
|
+
|
|
5631
|
+
}
|
|
5632
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5633
|
+
interface ILineContainerComponentProps {
|
|
5634
|
+
selection?: BABYLON.NodeEditor.SharedUIComponents.ISelectedLineContainer;
|
|
5506
5635
|
title: string;
|
|
5507
5636
|
children: any[] | any;
|
|
5508
5637
|
closed?: boolean;
|
|
@@ -5519,7 +5648,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5519
5648
|
}
|
|
5520
5649
|
|
|
5521
5650
|
|
|
5522
|
-
|
|
5651
|
+
|
|
5652
|
+
}
|
|
5653
|
+
declare module BABYLON.NodeEditor {
|
|
5654
|
+
|
|
5655
|
+
}
|
|
5656
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5657
|
+
interface ILinkButtonComponentProps {
|
|
5523
5658
|
label: string;
|
|
5524
5659
|
buttonLabel: string;
|
|
5525
5660
|
url?: string;
|
|
@@ -5534,7 +5669,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5534
5669
|
}
|
|
5535
5670
|
|
|
5536
5671
|
|
|
5537
|
-
|
|
5672
|
+
|
|
5673
|
+
}
|
|
5674
|
+
declare module BABYLON.NodeEditor {
|
|
5675
|
+
|
|
5676
|
+
}
|
|
5677
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5678
|
+
interface IMessageLineComponentProps {
|
|
5538
5679
|
text: string;
|
|
5539
5680
|
color?: string;
|
|
5540
5681
|
icon?: any;
|
|
@@ -5545,7 +5686,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5545
5686
|
}
|
|
5546
5687
|
|
|
5547
5688
|
|
|
5548
|
-
|
|
5689
|
+
|
|
5690
|
+
}
|
|
5691
|
+
declare module BABYLON.NodeEditor {
|
|
5692
|
+
|
|
5693
|
+
}
|
|
5694
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5695
|
+
interface INumericInputComponentProps {
|
|
5549
5696
|
label: string;
|
|
5550
5697
|
value: number;
|
|
5551
5698
|
step?: number;
|
|
@@ -5571,7 +5718,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5571
5718
|
}
|
|
5572
5719
|
|
|
5573
5720
|
|
|
5574
|
-
|
|
5721
|
+
|
|
5722
|
+
}
|
|
5723
|
+
declare module BABYLON.NodeEditor {
|
|
5724
|
+
|
|
5725
|
+
}
|
|
5726
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5727
|
+
export var Null_Value: number;
|
|
5575
5728
|
export interface IOptionsLineComponentProps {
|
|
5576
5729
|
label: string;
|
|
5577
5730
|
target: any;
|
|
@@ -5580,7 +5733,7 @@ declare module BABYLON.NodeEditor {
|
|
|
5580
5733
|
noDirectUpdate?: boolean;
|
|
5581
5734
|
onSelect?: (value: number) => void;
|
|
5582
5735
|
extractValue?: () => number;
|
|
5583
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5736
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5584
5737
|
allowNullValue?: boolean;
|
|
5585
5738
|
icon?: string;
|
|
5586
5739
|
iconLabel?: string;
|
|
@@ -5601,13 +5754,25 @@ declare module BABYLON.NodeEditor {
|
|
|
5601
5754
|
}
|
|
5602
5755
|
|
|
5603
5756
|
|
|
5604
|
-
|
|
5757
|
+
|
|
5758
|
+
}
|
|
5759
|
+
declare module BABYLON.NodeEditor {
|
|
5760
|
+
|
|
5761
|
+
}
|
|
5762
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5763
|
+
export class Popup {
|
|
5605
5764
|
static CreatePopup(title: string, windowVariableName: string, width?: number, height?: number): HTMLDivElement | null;
|
|
5606
5765
|
private static _CopyStyles;
|
|
5607
5766
|
}
|
|
5608
5767
|
|
|
5609
5768
|
|
|
5610
|
-
|
|
5769
|
+
|
|
5770
|
+
}
|
|
5771
|
+
declare module BABYLON.NodeEditor {
|
|
5772
|
+
|
|
5773
|
+
}
|
|
5774
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5775
|
+
interface IRadioButtonLineComponentProps {
|
|
5611
5776
|
onSelectionChangedObservable: BABYLON.Observable<RadioButtonLineComponent>;
|
|
5612
5777
|
label: string;
|
|
5613
5778
|
isSelected: () => boolean;
|
|
@@ -5627,7 +5792,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5627
5792
|
}
|
|
5628
5793
|
|
|
5629
5794
|
|
|
5630
|
-
|
|
5795
|
+
|
|
5796
|
+
}
|
|
5797
|
+
declare module BABYLON.NodeEditor {
|
|
5798
|
+
|
|
5799
|
+
}
|
|
5800
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5801
|
+
interface ISliderLineComponentProps {
|
|
5631
5802
|
label: string;
|
|
5632
5803
|
target?: any;
|
|
5633
5804
|
propertyName?: string;
|
|
@@ -5638,12 +5809,12 @@ declare module BABYLON.NodeEditor {
|
|
|
5638
5809
|
useEuler?: boolean;
|
|
5639
5810
|
onChange?: (value: number) => void;
|
|
5640
5811
|
onInput?: (value: number) => void;
|
|
5641
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5812
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5642
5813
|
decimalCount?: number;
|
|
5643
5814
|
margin?: boolean;
|
|
5644
5815
|
icon?: string;
|
|
5645
5816
|
iconLabel?: string;
|
|
5646
|
-
lockObject?: LockObject;
|
|
5817
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5647
5818
|
unit?: React.ReactNode;
|
|
5648
5819
|
}
|
|
5649
5820
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
@@ -5661,7 +5832,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5661
5832
|
}
|
|
5662
5833
|
|
|
5663
5834
|
|
|
5664
|
-
|
|
5835
|
+
|
|
5836
|
+
}
|
|
5837
|
+
declare module BABYLON.NodeEditor {
|
|
5838
|
+
|
|
5839
|
+
}
|
|
5840
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5841
|
+
export const conflictingValuesPlaceholder = "\u2014";
|
|
5665
5842
|
/**
|
|
5666
5843
|
*
|
|
5667
5844
|
* @param targets a list of selected targets
|
|
@@ -5669,17 +5846,23 @@ declare module BABYLON.NodeEditor {
|
|
|
5669
5846
|
* @param getProperty
|
|
5670
5847
|
* @returns a proxy object that can be passed as a target into the input
|
|
5671
5848
|
*/
|
|
5672
|
-
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
5849
|
+
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
5850
|
+
|
|
5851
|
+
|
|
5673
5852
|
|
|
5853
|
+
}
|
|
5854
|
+
declare module BABYLON.NodeEditor {
|
|
5674
5855
|
|
|
5675
|
-
|
|
5856
|
+
}
|
|
5857
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5858
|
+
export interface ITextInputLineComponentProps {
|
|
5676
5859
|
label?: string;
|
|
5677
|
-
lockObject?: LockObject;
|
|
5860
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5678
5861
|
target?: any;
|
|
5679
5862
|
propertyName?: string;
|
|
5680
5863
|
value?: string;
|
|
5681
5864
|
onChange?: (value: string) => void;
|
|
5682
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5865
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5683
5866
|
icon?: string;
|
|
5684
5867
|
iconLabel?: string;
|
|
5685
5868
|
noUnderline?: boolean;
|
|
@@ -5715,7 +5898,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5715
5898
|
}
|
|
5716
5899
|
|
|
5717
5900
|
|
|
5718
|
-
|
|
5901
|
+
|
|
5902
|
+
}
|
|
5903
|
+
declare module BABYLON.NodeEditor {
|
|
5904
|
+
|
|
5905
|
+
}
|
|
5906
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5907
|
+
interface ITextLineComponentProps {
|
|
5719
5908
|
label?: string;
|
|
5720
5909
|
value?: string;
|
|
5721
5910
|
color?: string;
|
|
@@ -5736,7 +5925,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5736
5925
|
}
|
|
5737
5926
|
|
|
5738
5927
|
|
|
5739
|
-
|
|
5928
|
+
|
|
5929
|
+
}
|
|
5930
|
+
declare module BABYLON.NodeEditor {
|
|
5931
|
+
|
|
5932
|
+
}
|
|
5933
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5934
|
+
/// <reference types="react" />
|
|
5740
5935
|
interface IUnitButtonProps {
|
|
5741
5936
|
unit: string;
|
|
5742
5937
|
locked?: boolean;
|
|
@@ -5745,7 +5940,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5745
5940
|
export function UnitButton(props: IUnitButtonProps): JSX.Element;
|
|
5746
5941
|
|
|
5747
5942
|
|
|
5748
|
-
|
|
5943
|
+
|
|
5944
|
+
}
|
|
5945
|
+
declare module BABYLON.NodeEditor {
|
|
5946
|
+
|
|
5947
|
+
}
|
|
5948
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5949
|
+
interface IValueLineComponentProps {
|
|
5749
5950
|
label: string;
|
|
5750
5951
|
value: number;
|
|
5751
5952
|
color?: string;
|
|
@@ -5760,13 +5961,19 @@ declare module BABYLON.NodeEditor {
|
|
|
5760
5961
|
}
|
|
5761
5962
|
|
|
5762
5963
|
|
|
5763
|
-
|
|
5964
|
+
|
|
5965
|
+
}
|
|
5966
|
+
declare module BABYLON.NodeEditor {
|
|
5967
|
+
|
|
5968
|
+
}
|
|
5969
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5970
|
+
interface IVector2LineComponentProps {
|
|
5764
5971
|
label: string;
|
|
5765
5972
|
target: any;
|
|
5766
5973
|
propertyName: string;
|
|
5767
5974
|
step?: number;
|
|
5768
5975
|
onChange?: (newvalue: BABYLON.Vector2) => void;
|
|
5769
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5976
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5770
5977
|
icon?: string;
|
|
5771
5978
|
iconLabel?: string;
|
|
5772
5979
|
}
|
|
@@ -5791,14 +5998,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5791
5998
|
}
|
|
5792
5999
|
|
|
5793
6000
|
|
|
5794
|
-
|
|
6001
|
+
|
|
6002
|
+
}
|
|
6003
|
+
declare module BABYLON.NodeEditor {
|
|
6004
|
+
|
|
6005
|
+
}
|
|
6006
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6007
|
+
interface IVector3LineComponentProps {
|
|
5795
6008
|
label: string;
|
|
5796
6009
|
target: any;
|
|
5797
6010
|
propertyName: string;
|
|
5798
6011
|
step?: number;
|
|
5799
6012
|
onChange?: (newvalue: BABYLON.Vector3) => void;
|
|
5800
6013
|
useEuler?: boolean;
|
|
5801
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6014
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5802
6015
|
noSlider?: boolean;
|
|
5803
6016
|
icon?: string;
|
|
5804
6017
|
iconLabel?: string;
|
|
@@ -5827,14 +6040,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5827
6040
|
}
|
|
5828
6041
|
|
|
5829
6042
|
|
|
5830
|
-
|
|
6043
|
+
|
|
6044
|
+
}
|
|
6045
|
+
declare module BABYLON.NodeEditor {
|
|
6046
|
+
|
|
6047
|
+
}
|
|
6048
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6049
|
+
interface IVector4LineComponentProps {
|
|
5831
6050
|
label: string;
|
|
5832
6051
|
target: any;
|
|
5833
6052
|
propertyName: string;
|
|
5834
6053
|
step?: number;
|
|
5835
6054
|
onChange?: (newvalue: BABYLON.Vector4) => void;
|
|
5836
6055
|
useEuler?: boolean;
|
|
5837
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6056
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5838
6057
|
icon?: string;
|
|
5839
6058
|
iconLabel?: string;
|
|
5840
6059
|
}
|
|
@@ -5863,7 +6082,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5863
6082
|
}
|
|
5864
6083
|
|
|
5865
6084
|
|
|
5866
|
-
|
|
6085
|
+
|
|
6086
|
+
}
|
|
6087
|
+
declare module BABYLON.NodeEditor {
|
|
6088
|
+
|
|
6089
|
+
}
|
|
6090
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6091
|
+
export class PropertyChangedEvent {
|
|
5867
6092
|
object: any;
|
|
5868
6093
|
property: string;
|
|
5869
6094
|
value: any;
|
|
@@ -5872,7 +6097,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5872
6097
|
}
|
|
5873
6098
|
|
|
5874
6099
|
|
|
5875
|
-
|
|
6100
|
+
|
|
6101
|
+
}
|
|
6102
|
+
declare module BABYLON.NodeEditor {
|
|
6103
|
+
|
|
6104
|
+
}
|
|
6105
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6106
|
+
export class StringTools {
|
|
5876
6107
|
private static _SaveAs;
|
|
5877
6108
|
private static _Click;
|
|
5878
6109
|
/**
|
|
@@ -5885,10 +6116,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5885
6116
|
}
|
|
5886
6117
|
|
|
5887
6118
|
|
|
5888
|
-
|
|
6119
|
+
|
|
6120
|
+
}
|
|
6121
|
+
declare module BABYLON.NodeEditor {
|
|
6122
|
+
|
|
6123
|
+
}
|
|
6124
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6125
|
+
interface ICheckboxPropertyGridComponentProps {
|
|
5889
6126
|
checkbox: BABYLON.GUI.Checkbox;
|
|
5890
|
-
lockObject: LockObject;
|
|
5891
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6127
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6128
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5892
6129
|
}
|
|
5893
6130
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
5894
6131
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
@@ -5896,10 +6133,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5896
6133
|
}
|
|
5897
6134
|
|
|
5898
6135
|
|
|
5899
|
-
|
|
6136
|
+
|
|
6137
|
+
}
|
|
6138
|
+
declare module BABYLON.NodeEditor {
|
|
6139
|
+
|
|
6140
|
+
}
|
|
6141
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6142
|
+
interface IColorPickerPropertyGridComponentProps {
|
|
5900
6143
|
colorPicker: BABYLON.GUI.ColorPicker;
|
|
5901
|
-
lockObject: LockObject;
|
|
5902
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6144
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6145
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5903
6146
|
}
|
|
5904
6147
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
5905
6148
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
@@ -5907,11 +6150,17 @@ declare module BABYLON.NodeEditor {
|
|
|
5907
6150
|
}
|
|
5908
6151
|
|
|
5909
6152
|
|
|
5910
|
-
|
|
6153
|
+
|
|
6154
|
+
}
|
|
6155
|
+
declare module BABYLON.NodeEditor {
|
|
6156
|
+
|
|
6157
|
+
}
|
|
6158
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6159
|
+
interface ICommonControlPropertyGridComponentProps {
|
|
5911
6160
|
controls?: BABYLON.GUI.Control[];
|
|
5912
6161
|
control?: BABYLON.GUI.Control;
|
|
5913
|
-
lockObject: LockObject;
|
|
5914
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6162
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6163
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5915
6164
|
}
|
|
5916
6165
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps> {
|
|
5917
6166
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
|
@@ -5920,10 +6169,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5920
6169
|
}
|
|
5921
6170
|
|
|
5922
6171
|
|
|
5923
|
-
|
|
6172
|
+
|
|
6173
|
+
}
|
|
6174
|
+
declare module BABYLON.NodeEditor {
|
|
6175
|
+
|
|
6176
|
+
}
|
|
6177
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6178
|
+
interface IControlPropertyGridComponentProps {
|
|
5924
6179
|
control: BABYLON.GUI.Control;
|
|
5925
|
-
lockObject: LockObject;
|
|
5926
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6180
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6181
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5927
6182
|
}
|
|
5928
6183
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
5929
6184
|
constructor(props: IControlPropertyGridComponentProps);
|
|
@@ -5931,10 +6186,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5931
6186
|
}
|
|
5932
6187
|
|
|
5933
6188
|
|
|
5934
|
-
|
|
6189
|
+
|
|
6190
|
+
}
|
|
6191
|
+
declare module BABYLON.NodeEditor {
|
|
6192
|
+
|
|
6193
|
+
}
|
|
6194
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6195
|
+
interface IEllipsePropertyGridComponentProps {
|
|
5935
6196
|
ellipse: BABYLON.GUI.Ellipse;
|
|
5936
|
-
lockObject: LockObject;
|
|
5937
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6197
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6198
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5938
6199
|
}
|
|
5939
6200
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
5940
6201
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
@@ -5942,10 +6203,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5942
6203
|
}
|
|
5943
6204
|
|
|
5944
6205
|
|
|
5945
|
-
|
|
6206
|
+
|
|
6207
|
+
}
|
|
6208
|
+
declare module BABYLON.NodeEditor {
|
|
6209
|
+
|
|
6210
|
+
}
|
|
6211
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6212
|
+
interface IGridPropertyGridComponentProps {
|
|
5946
6213
|
grid: BABYLON.GUI.Grid;
|
|
5947
|
-
lockObject: LockObject;
|
|
5948
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6214
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6215
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5949
6216
|
}
|
|
5950
6217
|
export class GridPropertyGridComponent extends React.Component<IGridPropertyGridComponentProps> {
|
|
5951
6218
|
constructor(props: IGridPropertyGridComponentProps);
|
|
@@ -5955,10 +6222,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5955
6222
|
}
|
|
5956
6223
|
|
|
5957
6224
|
|
|
5958
|
-
|
|
6225
|
+
|
|
6226
|
+
}
|
|
6227
|
+
declare module BABYLON.NodeEditor {
|
|
6228
|
+
|
|
6229
|
+
}
|
|
6230
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6231
|
+
interface IImageBasedSliderPropertyGridComponentProps {
|
|
5959
6232
|
imageBasedSlider: BABYLON.GUI.ImageBasedSlider;
|
|
5960
|
-
lockObject: LockObject;
|
|
5961
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6233
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6234
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5962
6235
|
}
|
|
5963
6236
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
5964
6237
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
@@ -5966,10 +6239,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5966
6239
|
}
|
|
5967
6240
|
|
|
5968
6241
|
|
|
5969
|
-
|
|
6242
|
+
|
|
6243
|
+
}
|
|
6244
|
+
declare module BABYLON.NodeEditor {
|
|
6245
|
+
|
|
6246
|
+
}
|
|
6247
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6248
|
+
interface IImagePropertyGridComponentProps {
|
|
5970
6249
|
image: BABYLON.GUI.Image;
|
|
5971
|
-
lockObject: LockObject;
|
|
5972
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6250
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6251
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5973
6252
|
}
|
|
5974
6253
|
export class ImagePropertyGridComponent extends React.Component<IImagePropertyGridComponentProps> {
|
|
5975
6254
|
constructor(props: IImagePropertyGridComponentProps);
|
|
@@ -5977,10 +6256,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5977
6256
|
}
|
|
5978
6257
|
|
|
5979
6258
|
|
|
5980
|
-
|
|
6259
|
+
|
|
6260
|
+
}
|
|
6261
|
+
declare module BABYLON.NodeEditor {
|
|
6262
|
+
|
|
6263
|
+
}
|
|
6264
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6265
|
+
interface IInputTextPropertyGridComponentProps {
|
|
5981
6266
|
inputText: BABYLON.GUI.InputText;
|
|
5982
|
-
lockObject: LockObject;
|
|
5983
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6267
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6268
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5984
6269
|
}
|
|
5985
6270
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
5986
6271
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
@@ -5988,10 +6273,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5988
6273
|
}
|
|
5989
6274
|
|
|
5990
6275
|
|
|
5991
|
-
|
|
6276
|
+
|
|
6277
|
+
}
|
|
6278
|
+
declare module BABYLON.NodeEditor {
|
|
6279
|
+
|
|
6280
|
+
}
|
|
6281
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6282
|
+
interface ILinePropertyGridComponentProps {
|
|
5992
6283
|
line: BABYLON.GUI.Line;
|
|
5993
|
-
lockObject: LockObject;
|
|
5994
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6284
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6285
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5995
6286
|
}
|
|
5996
6287
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
5997
6288
|
constructor(props: ILinePropertyGridComponentProps);
|
|
@@ -6000,10 +6291,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6000
6291
|
}
|
|
6001
6292
|
|
|
6002
6293
|
|
|
6003
|
-
|
|
6294
|
+
|
|
6295
|
+
}
|
|
6296
|
+
declare module BABYLON.NodeEditor {
|
|
6297
|
+
|
|
6298
|
+
}
|
|
6299
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6300
|
+
interface IRadioButtonPropertyGridComponentProps {
|
|
6004
6301
|
radioButtons: BABYLON.GUI.RadioButton[];
|
|
6005
|
-
lockObject: LockObject;
|
|
6006
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6302
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6303
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6007
6304
|
}
|
|
6008
6305
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
6009
6306
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
@@ -6011,10 +6308,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6011
6308
|
}
|
|
6012
6309
|
|
|
6013
6310
|
|
|
6014
|
-
|
|
6311
|
+
|
|
6312
|
+
}
|
|
6313
|
+
declare module BABYLON.NodeEditor {
|
|
6314
|
+
|
|
6315
|
+
}
|
|
6316
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6317
|
+
interface IRectanglePropertyGridComponentProps {
|
|
6015
6318
|
rectangle: BABYLON.GUI.Rectangle;
|
|
6016
|
-
lockObject: LockObject;
|
|
6017
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6319
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6320
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6018
6321
|
}
|
|
6019
6322
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
6020
6323
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
@@ -6022,10 +6325,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6022
6325
|
}
|
|
6023
6326
|
|
|
6024
6327
|
|
|
6025
|
-
|
|
6328
|
+
|
|
6329
|
+
}
|
|
6330
|
+
declare module BABYLON.NodeEditor {
|
|
6331
|
+
|
|
6332
|
+
}
|
|
6333
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6334
|
+
interface IScrollViewerPropertyGridComponentProps {
|
|
6026
6335
|
scrollViewer: BABYLON.GUI.ScrollViewer;
|
|
6027
|
-
lockObject: LockObject;
|
|
6028
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6336
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6337
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6029
6338
|
}
|
|
6030
6339
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
6031
6340
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
@@ -6033,10 +6342,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6033
6342
|
}
|
|
6034
6343
|
|
|
6035
6344
|
|
|
6036
|
-
|
|
6345
|
+
|
|
6346
|
+
}
|
|
6347
|
+
declare module BABYLON.NodeEditor {
|
|
6348
|
+
|
|
6349
|
+
}
|
|
6350
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6351
|
+
interface ISliderPropertyGridComponentProps {
|
|
6037
6352
|
slider: BABYLON.GUI.Slider;
|
|
6038
|
-
lockObject: LockObject;
|
|
6039
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6353
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6354
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6040
6355
|
}
|
|
6041
6356
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
6042
6357
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
@@ -6044,10 +6359,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6044
6359
|
}
|
|
6045
6360
|
|
|
6046
6361
|
|
|
6047
|
-
|
|
6362
|
+
|
|
6363
|
+
}
|
|
6364
|
+
declare module BABYLON.NodeEditor {
|
|
6365
|
+
|
|
6366
|
+
}
|
|
6367
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6368
|
+
interface IStackPanelPropertyGridComponentProps {
|
|
6048
6369
|
stackPanel: BABYLON.GUI.StackPanel;
|
|
6049
|
-
lockObject: LockObject;
|
|
6050
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6370
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6371
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6051
6372
|
}
|
|
6052
6373
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
6053
6374
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
@@ -6055,10 +6376,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6055
6376
|
}
|
|
6056
6377
|
|
|
6057
6378
|
|
|
6058
|
-
|
|
6379
|
+
|
|
6380
|
+
}
|
|
6381
|
+
declare module BABYLON.NodeEditor {
|
|
6382
|
+
|
|
6383
|
+
}
|
|
6384
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6385
|
+
interface ITextBlockPropertyGridComponentProps {
|
|
6059
6386
|
textBlock: BABYLON.GUI.TextBlock;
|
|
6060
|
-
lockObject: LockObject;
|
|
6061
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6387
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6388
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6062
6389
|
}
|
|
6063
6390
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
6064
6391
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
@@ -6066,7 +6393,13 @@ declare module BABYLON.NodeEditor {
|
|
|
6066
6393
|
}
|
|
6067
6394
|
|
|
6068
6395
|
|
|
6069
|
-
|
|
6396
|
+
|
|
6397
|
+
}
|
|
6398
|
+
declare module BABYLON.NodeEditor {
|
|
6399
|
+
|
|
6400
|
+
}
|
|
6401
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6402
|
+
/**
|
|
6070
6403
|
* Class used to provide lock mechanism
|
|
6071
6404
|
*/
|
|
6072
6405
|
export class LockObject {
|
|
@@ -6079,5 +6412,8 @@ declare module BABYLON.NodeEditor {
|
|
|
6079
6412
|
|
|
6080
6413
|
|
|
6081
6414
|
}
|
|
6415
|
+
declare module BABYLON.NodeEditor {
|
|
6416
|
+
|
|
6417
|
+
}
|
|
6082
6418
|
|
|
6083
6419
|
|