babylonjs-node-editor 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.nodeEditor.d.ts +438 -108
- package/babylon.nodeEditor.module.d.ts +438 -108
- package/package.json +2 -2
|
@@ -5091,7 +5091,10 @@ declare module BABYLON.NodeEditor {
|
|
|
5091
5091
|
}
|
|
5092
5092
|
|
|
5093
5093
|
|
|
5094
|
-
|
|
5094
|
+
|
|
5095
|
+
}
|
|
5096
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5097
|
+
export interface IColorComponentEntryProps {
|
|
5095
5098
|
value: number;
|
|
5096
5099
|
label: string;
|
|
5097
5100
|
max?: number;
|
|
@@ -5106,7 +5109,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5106
5109
|
}
|
|
5107
5110
|
|
|
5108
5111
|
|
|
5109
|
-
|
|
5112
|
+
|
|
5113
|
+
}
|
|
5114
|
+
declare module BABYLON.NodeEditor {
|
|
5115
|
+
|
|
5116
|
+
}
|
|
5117
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5118
|
+
/**
|
|
5110
5119
|
* Interface used to specify creation options for color picker
|
|
5111
5120
|
*/
|
|
5112
5121
|
export interface IColorPickerProps {
|
|
@@ -5146,7 +5155,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5146
5155
|
}
|
|
5147
5156
|
|
|
5148
5157
|
|
|
5149
|
-
|
|
5158
|
+
|
|
5159
|
+
}
|
|
5160
|
+
declare module BABYLON.NodeEditor {
|
|
5161
|
+
|
|
5162
|
+
}
|
|
5163
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5164
|
+
export interface IHexColorProps {
|
|
5150
5165
|
value: string;
|
|
5151
5166
|
expectedLength: number;
|
|
5152
5167
|
onChange: (value: string) => void;
|
|
@@ -5163,7 +5178,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5163
5178
|
}
|
|
5164
5179
|
|
|
5165
5180
|
|
|
5166
|
-
|
|
5181
|
+
|
|
5182
|
+
}
|
|
5183
|
+
declare module BABYLON.NodeEditor {
|
|
5184
|
+
|
|
5185
|
+
}
|
|
5186
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5187
|
+
export interface IBooleanLineComponentProps {
|
|
5167
5188
|
label: string;
|
|
5168
5189
|
value: boolean;
|
|
5169
5190
|
icon?: string;
|
|
@@ -5175,7 +5196,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5175
5196
|
}
|
|
5176
5197
|
|
|
5177
5198
|
|
|
5178
|
-
|
|
5199
|
+
|
|
5200
|
+
}
|
|
5201
|
+
declare module BABYLON.NodeEditor {
|
|
5202
|
+
|
|
5203
|
+
}
|
|
5204
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5205
|
+
export interface IButtonLineComponentProps {
|
|
5179
5206
|
label: string;
|
|
5180
5207
|
onClick: () => void;
|
|
5181
5208
|
icon?: string;
|
|
@@ -5187,14 +5214,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5187
5214
|
}
|
|
5188
5215
|
|
|
5189
5216
|
|
|
5190
|
-
|
|
5217
|
+
|
|
5218
|
+
}
|
|
5219
|
+
declare module BABYLON.NodeEditor {
|
|
5220
|
+
|
|
5221
|
+
}
|
|
5222
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5223
|
+
export interface ICheckBoxLineComponentProps {
|
|
5191
5224
|
label?: string;
|
|
5192
5225
|
target?: any;
|
|
5193
5226
|
propertyName?: string;
|
|
5194
5227
|
isSelected?: () => boolean;
|
|
5195
5228
|
onSelect?: (value: boolean) => void;
|
|
5196
5229
|
onValueChanged?: () => void;
|
|
5197
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5230
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5198
5231
|
disabled?: boolean;
|
|
5199
5232
|
icon?: string;
|
|
5200
5233
|
iconLabel?: string;
|
|
@@ -5221,14 +5254,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5221
5254
|
}
|
|
5222
5255
|
|
|
5223
5256
|
|
|
5224
|
-
|
|
5257
|
+
|
|
5258
|
+
}
|
|
5259
|
+
declare module BABYLON.NodeEditor {
|
|
5260
|
+
|
|
5261
|
+
}
|
|
5262
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5263
|
+
export interface IColor3LineComponentProps {
|
|
5225
5264
|
label: string;
|
|
5226
5265
|
target: any;
|
|
5227
5266
|
propertyName: string;
|
|
5228
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5267
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5229
5268
|
isLinear?: boolean;
|
|
5230
5269
|
icon?: string;
|
|
5231
|
-
lockObject?: LockObject;
|
|
5270
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5232
5271
|
iconLabel?: string;
|
|
5233
5272
|
onValueChange?: (value: string) => void;
|
|
5234
5273
|
}
|
|
@@ -5237,32 +5276,44 @@ declare module BABYLON.NodeEditor {
|
|
|
5237
5276
|
}
|
|
5238
5277
|
|
|
5239
5278
|
|
|
5240
|
-
|
|
5279
|
+
|
|
5280
|
+
}
|
|
5281
|
+
declare module BABYLON.NodeEditor {
|
|
5282
|
+
|
|
5283
|
+
}
|
|
5284
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5285
|
+
export interface IColor4LineComponentProps {
|
|
5241
5286
|
label: string;
|
|
5242
5287
|
target?: any;
|
|
5243
5288
|
propertyName: string;
|
|
5244
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5289
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5245
5290
|
onChange?: () => void;
|
|
5246
5291
|
isLinear?: boolean;
|
|
5247
5292
|
icon?: string;
|
|
5248
5293
|
iconLabel?: string;
|
|
5249
|
-
lockObject?: LockObject;
|
|
5294
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5250
5295
|
}
|
|
5251
5296
|
export class Color4LineComponent extends React.Component<IColor4LineComponentProps> {
|
|
5252
5297
|
render(): JSX.Element;
|
|
5253
5298
|
}
|
|
5254
5299
|
|
|
5255
5300
|
|
|
5256
|
-
|
|
5301
|
+
|
|
5302
|
+
}
|
|
5303
|
+
declare module BABYLON.NodeEditor {
|
|
5304
|
+
|
|
5305
|
+
}
|
|
5306
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5307
|
+
export interface IColorLineComponentProps {
|
|
5257
5308
|
label: string;
|
|
5258
5309
|
target?: any;
|
|
5259
5310
|
propertyName: string;
|
|
5260
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5311
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5261
5312
|
onChange?: () => void;
|
|
5262
5313
|
isLinear?: boolean;
|
|
5263
5314
|
icon?: string;
|
|
5264
5315
|
iconLabel?: string;
|
|
5265
|
-
lockObject?: LockObject;
|
|
5316
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5266
5317
|
disableAlpha?: boolean;
|
|
5267
5318
|
}
|
|
5268
5319
|
interface IColorLineComponentState {
|
|
@@ -5289,7 +5340,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5289
5340
|
}
|
|
5290
5341
|
|
|
5291
5342
|
|
|
5292
|
-
|
|
5343
|
+
|
|
5344
|
+
}
|
|
5345
|
+
declare module BABYLON.NodeEditor {
|
|
5346
|
+
|
|
5347
|
+
}
|
|
5348
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5349
|
+
export interface IColorPickerComponentProps {
|
|
5293
5350
|
value: BABYLON.Color4 | BABYLON.Color3;
|
|
5294
5351
|
linearHint?: boolean;
|
|
5295
5352
|
onColorChanged: (newOne: string) => void;
|
|
@@ -5317,7 +5374,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5317
5374
|
}
|
|
5318
5375
|
|
|
5319
5376
|
|
|
5320
|
-
|
|
5377
|
+
|
|
5378
|
+
}
|
|
5379
|
+
declare module BABYLON.NodeEditor {
|
|
5380
|
+
|
|
5381
|
+
}
|
|
5382
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5383
|
+
export interface IButtonLineComponentProps {
|
|
5321
5384
|
data: string;
|
|
5322
5385
|
tooltip: string;
|
|
5323
5386
|
}
|
|
@@ -5327,7 +5390,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5327
5390
|
}
|
|
5328
5391
|
|
|
5329
5392
|
|
|
5330
|
-
|
|
5393
|
+
|
|
5394
|
+
}
|
|
5395
|
+
declare module BABYLON.NodeEditor {
|
|
5396
|
+
|
|
5397
|
+
}
|
|
5398
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5399
|
+
interface IFileButtonLineComponentProps {
|
|
5331
5400
|
label: string;
|
|
5332
5401
|
onClick: (file: File) => void;
|
|
5333
5402
|
accept: string;
|
|
@@ -5344,7 +5413,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5344
5413
|
}
|
|
5345
5414
|
|
|
5346
5415
|
|
|
5347
|
-
|
|
5416
|
+
|
|
5417
|
+
}
|
|
5418
|
+
declare module BABYLON.NodeEditor {
|
|
5419
|
+
|
|
5420
|
+
}
|
|
5421
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5422
|
+
interface IFileMultipleButtonLineComponentProps {
|
|
5348
5423
|
label: string;
|
|
5349
5424
|
onClick: (event: any) => void;
|
|
5350
5425
|
accept: string;
|
|
@@ -5361,14 +5436,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5361
5436
|
}
|
|
5362
5437
|
|
|
5363
5438
|
|
|
5364
|
-
|
|
5439
|
+
|
|
5440
|
+
}
|
|
5441
|
+
declare module BABYLON.NodeEditor {
|
|
5442
|
+
|
|
5443
|
+
}
|
|
5444
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5445
|
+
interface IFloatLineComponentProps {
|
|
5365
5446
|
label: string;
|
|
5366
5447
|
target: any;
|
|
5367
5448
|
propertyName: string;
|
|
5368
|
-
lockObject?: LockObject;
|
|
5449
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5369
5450
|
onChange?: (newValue: number) => void;
|
|
5370
5451
|
isInteger?: boolean;
|
|
5371
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5452
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5372
5453
|
additionalClass?: string;
|
|
5373
5454
|
step?: string;
|
|
5374
5455
|
digits?: number;
|
|
@@ -5408,15 +5489,21 @@ declare module BABYLON.NodeEditor {
|
|
|
5408
5489
|
}
|
|
5409
5490
|
|
|
5410
5491
|
|
|
5411
|
-
|
|
5492
|
+
|
|
5493
|
+
}
|
|
5494
|
+
declare module BABYLON.NodeEditor {
|
|
5495
|
+
|
|
5496
|
+
}
|
|
5497
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5498
|
+
interface IHexLineComponentProps {
|
|
5412
5499
|
label: string;
|
|
5413
5500
|
target: any;
|
|
5414
5501
|
propertyName: string;
|
|
5415
|
-
lockObject?: LockObject;
|
|
5502
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5416
5503
|
onChange?: (newValue: number) => void;
|
|
5417
5504
|
isInteger?: boolean;
|
|
5418
5505
|
replaySourceReplacement?: string;
|
|
5419
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5506
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5420
5507
|
additionalClass?: string;
|
|
5421
5508
|
step?: string;
|
|
5422
5509
|
digits?: number;
|
|
@@ -5445,7 +5532,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5445
5532
|
}
|
|
5446
5533
|
|
|
5447
5534
|
|
|
5448
|
-
|
|
5535
|
+
|
|
5536
|
+
}
|
|
5537
|
+
declare module BABYLON.NodeEditor {
|
|
5538
|
+
|
|
5539
|
+
}
|
|
5540
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5541
|
+
export interface IIconButtonLineComponentProps {
|
|
5449
5542
|
icon: string;
|
|
5450
5543
|
onClick: () => void;
|
|
5451
5544
|
tooltip: string;
|
|
@@ -5457,7 +5550,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5457
5550
|
}
|
|
5458
5551
|
|
|
5459
5552
|
|
|
5460
|
-
|
|
5553
|
+
|
|
5554
|
+
}
|
|
5555
|
+
declare module BABYLON.NodeEditor {
|
|
5556
|
+
|
|
5557
|
+
}
|
|
5558
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5559
|
+
interface IIconComponentProps {
|
|
5461
5560
|
icon: string;
|
|
5462
5561
|
label?: string;
|
|
5463
5562
|
}
|
|
@@ -5466,7 +5565,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5466
5565
|
}
|
|
5467
5566
|
|
|
5468
5567
|
|
|
5469
|
-
|
|
5568
|
+
|
|
5569
|
+
}
|
|
5570
|
+
declare module BABYLON.NodeEditor {
|
|
5571
|
+
|
|
5572
|
+
}
|
|
5573
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5574
|
+
interface IIndentedTextLineComponentProps {
|
|
5470
5575
|
value?: string;
|
|
5471
5576
|
color?: string;
|
|
5472
5577
|
underline?: boolean;
|
|
@@ -5482,7 +5587,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5482
5587
|
}
|
|
5483
5588
|
|
|
5484
5589
|
|
|
5485
|
-
|
|
5590
|
+
|
|
5591
|
+
}
|
|
5592
|
+
declare module BABYLON.NodeEditor {
|
|
5593
|
+
|
|
5594
|
+
}
|
|
5595
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5596
|
+
interface IInputArrowsComponentProps {
|
|
5486
5597
|
incrementValue: (amount: number) => void;
|
|
5487
5598
|
setDragging: (dragging: boolean) => void;
|
|
5488
5599
|
}
|
|
@@ -5495,14 +5606,26 @@ declare module BABYLON.NodeEditor {
|
|
|
5495
5606
|
}
|
|
5496
5607
|
|
|
5497
5608
|
|
|
5498
|
-
|
|
5609
|
+
|
|
5610
|
+
}
|
|
5611
|
+
declare module BABYLON.NodeEditor {
|
|
5612
|
+
|
|
5613
|
+
}
|
|
5614
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5615
|
+
export interface ISelectedLineContainer {
|
|
5499
5616
|
selectedLineContainerTitles: Array<string>;
|
|
5500
5617
|
selectedLineContainerTitlesNoFocus: Array<string>;
|
|
5501
5618
|
}
|
|
5502
5619
|
|
|
5503
5620
|
|
|
5504
|
-
|
|
5505
|
-
|
|
5621
|
+
|
|
5622
|
+
}
|
|
5623
|
+
declare module BABYLON.NodeEditor {
|
|
5624
|
+
|
|
5625
|
+
}
|
|
5626
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5627
|
+
interface ILineContainerComponentProps {
|
|
5628
|
+
selection?: BABYLON.NodeEditor.SharedUIComponents.ISelectedLineContainer;
|
|
5506
5629
|
title: string;
|
|
5507
5630
|
children: any[] | any;
|
|
5508
5631
|
closed?: boolean;
|
|
@@ -5519,7 +5642,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5519
5642
|
}
|
|
5520
5643
|
|
|
5521
5644
|
|
|
5522
|
-
|
|
5645
|
+
|
|
5646
|
+
}
|
|
5647
|
+
declare module BABYLON.NodeEditor {
|
|
5648
|
+
|
|
5649
|
+
}
|
|
5650
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5651
|
+
interface ILinkButtonComponentProps {
|
|
5523
5652
|
label: string;
|
|
5524
5653
|
buttonLabel: string;
|
|
5525
5654
|
url?: string;
|
|
@@ -5534,7 +5663,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5534
5663
|
}
|
|
5535
5664
|
|
|
5536
5665
|
|
|
5537
|
-
|
|
5666
|
+
|
|
5667
|
+
}
|
|
5668
|
+
declare module BABYLON.NodeEditor {
|
|
5669
|
+
|
|
5670
|
+
}
|
|
5671
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5672
|
+
interface IMessageLineComponentProps {
|
|
5538
5673
|
text: string;
|
|
5539
5674
|
color?: string;
|
|
5540
5675
|
icon?: any;
|
|
@@ -5545,7 +5680,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5545
5680
|
}
|
|
5546
5681
|
|
|
5547
5682
|
|
|
5548
|
-
|
|
5683
|
+
|
|
5684
|
+
}
|
|
5685
|
+
declare module BABYLON.NodeEditor {
|
|
5686
|
+
|
|
5687
|
+
}
|
|
5688
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5689
|
+
interface INumericInputComponentProps {
|
|
5549
5690
|
label: string;
|
|
5550
5691
|
value: number;
|
|
5551
5692
|
step?: number;
|
|
@@ -5571,7 +5712,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5571
5712
|
}
|
|
5572
5713
|
|
|
5573
5714
|
|
|
5574
|
-
|
|
5715
|
+
|
|
5716
|
+
}
|
|
5717
|
+
declare module BABYLON.NodeEditor {
|
|
5718
|
+
|
|
5719
|
+
}
|
|
5720
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5721
|
+
export var Null_Value: number;
|
|
5575
5722
|
export interface IOptionsLineComponentProps {
|
|
5576
5723
|
label: string;
|
|
5577
5724
|
target: any;
|
|
@@ -5580,7 +5727,7 @@ declare module BABYLON.NodeEditor {
|
|
|
5580
5727
|
noDirectUpdate?: boolean;
|
|
5581
5728
|
onSelect?: (value: number) => void;
|
|
5582
5729
|
extractValue?: () => number;
|
|
5583
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5730
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5584
5731
|
allowNullValue?: boolean;
|
|
5585
5732
|
icon?: string;
|
|
5586
5733
|
iconLabel?: string;
|
|
@@ -5601,13 +5748,25 @@ declare module BABYLON.NodeEditor {
|
|
|
5601
5748
|
}
|
|
5602
5749
|
|
|
5603
5750
|
|
|
5604
|
-
|
|
5751
|
+
|
|
5752
|
+
}
|
|
5753
|
+
declare module BABYLON.NodeEditor {
|
|
5754
|
+
|
|
5755
|
+
}
|
|
5756
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5757
|
+
export class Popup {
|
|
5605
5758
|
static CreatePopup(title: string, windowVariableName: string, width?: number, height?: number): HTMLDivElement | null;
|
|
5606
5759
|
private static _CopyStyles;
|
|
5607
5760
|
}
|
|
5608
5761
|
|
|
5609
5762
|
|
|
5610
|
-
|
|
5763
|
+
|
|
5764
|
+
}
|
|
5765
|
+
declare module BABYLON.NodeEditor {
|
|
5766
|
+
|
|
5767
|
+
}
|
|
5768
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5769
|
+
interface IRadioButtonLineComponentProps {
|
|
5611
5770
|
onSelectionChangedObservable: BABYLON.Observable<RadioButtonLineComponent>;
|
|
5612
5771
|
label: string;
|
|
5613
5772
|
isSelected: () => boolean;
|
|
@@ -5627,7 +5786,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5627
5786
|
}
|
|
5628
5787
|
|
|
5629
5788
|
|
|
5630
|
-
|
|
5789
|
+
|
|
5790
|
+
}
|
|
5791
|
+
declare module BABYLON.NodeEditor {
|
|
5792
|
+
|
|
5793
|
+
}
|
|
5794
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5795
|
+
interface ISliderLineComponentProps {
|
|
5631
5796
|
label: string;
|
|
5632
5797
|
target?: any;
|
|
5633
5798
|
propertyName?: string;
|
|
@@ -5638,12 +5803,12 @@ declare module BABYLON.NodeEditor {
|
|
|
5638
5803
|
useEuler?: boolean;
|
|
5639
5804
|
onChange?: (value: number) => void;
|
|
5640
5805
|
onInput?: (value: number) => void;
|
|
5641
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5806
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5642
5807
|
decimalCount?: number;
|
|
5643
5808
|
margin?: boolean;
|
|
5644
5809
|
icon?: string;
|
|
5645
5810
|
iconLabel?: string;
|
|
5646
|
-
lockObject?: LockObject;
|
|
5811
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5647
5812
|
unit?: React.ReactNode;
|
|
5648
5813
|
}
|
|
5649
5814
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
@@ -5661,7 +5826,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5661
5826
|
}
|
|
5662
5827
|
|
|
5663
5828
|
|
|
5664
|
-
|
|
5829
|
+
|
|
5830
|
+
}
|
|
5831
|
+
declare module BABYLON.NodeEditor {
|
|
5832
|
+
|
|
5833
|
+
}
|
|
5834
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5835
|
+
export const conflictingValuesPlaceholder = "\u2014";
|
|
5665
5836
|
/**
|
|
5666
5837
|
*
|
|
5667
5838
|
* @param targets a list of selected targets
|
|
@@ -5669,17 +5840,23 @@ declare module BABYLON.NodeEditor {
|
|
|
5669
5840
|
* @param getProperty
|
|
5670
5841
|
* @returns a proxy object that can be passed as a target into the input
|
|
5671
5842
|
*/
|
|
5672
|
-
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
5843
|
+
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
5844
|
+
|
|
5845
|
+
|
|
5673
5846
|
|
|
5847
|
+
}
|
|
5848
|
+
declare module BABYLON.NodeEditor {
|
|
5674
5849
|
|
|
5675
|
-
|
|
5850
|
+
}
|
|
5851
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5852
|
+
export interface ITextInputLineComponentProps {
|
|
5676
5853
|
label?: string;
|
|
5677
|
-
lockObject?: LockObject;
|
|
5854
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
5678
5855
|
target?: any;
|
|
5679
5856
|
propertyName?: string;
|
|
5680
5857
|
value?: string;
|
|
5681
5858
|
onChange?: (value: string) => void;
|
|
5682
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5859
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5683
5860
|
icon?: string;
|
|
5684
5861
|
iconLabel?: string;
|
|
5685
5862
|
noUnderline?: boolean;
|
|
@@ -5715,7 +5892,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5715
5892
|
}
|
|
5716
5893
|
|
|
5717
5894
|
|
|
5718
|
-
|
|
5895
|
+
|
|
5896
|
+
}
|
|
5897
|
+
declare module BABYLON.NodeEditor {
|
|
5898
|
+
|
|
5899
|
+
}
|
|
5900
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5901
|
+
interface ITextLineComponentProps {
|
|
5719
5902
|
label?: string;
|
|
5720
5903
|
value?: string;
|
|
5721
5904
|
color?: string;
|
|
@@ -5736,7 +5919,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5736
5919
|
}
|
|
5737
5920
|
|
|
5738
5921
|
|
|
5739
|
-
|
|
5922
|
+
|
|
5923
|
+
}
|
|
5924
|
+
declare module BABYLON.NodeEditor {
|
|
5925
|
+
|
|
5926
|
+
}
|
|
5927
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5928
|
+
/// <reference types="react" />
|
|
5740
5929
|
interface IUnitButtonProps {
|
|
5741
5930
|
unit: string;
|
|
5742
5931
|
locked?: boolean;
|
|
@@ -5745,7 +5934,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5745
5934
|
export function UnitButton(props: IUnitButtonProps): JSX.Element;
|
|
5746
5935
|
|
|
5747
5936
|
|
|
5748
|
-
|
|
5937
|
+
|
|
5938
|
+
}
|
|
5939
|
+
declare module BABYLON.NodeEditor {
|
|
5940
|
+
|
|
5941
|
+
}
|
|
5942
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5943
|
+
interface IValueLineComponentProps {
|
|
5749
5944
|
label: string;
|
|
5750
5945
|
value: number;
|
|
5751
5946
|
color?: string;
|
|
@@ -5760,13 +5955,19 @@ declare module BABYLON.NodeEditor {
|
|
|
5760
5955
|
}
|
|
5761
5956
|
|
|
5762
5957
|
|
|
5763
|
-
|
|
5958
|
+
|
|
5959
|
+
}
|
|
5960
|
+
declare module BABYLON.NodeEditor {
|
|
5961
|
+
|
|
5962
|
+
}
|
|
5963
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
5964
|
+
interface IVector2LineComponentProps {
|
|
5764
5965
|
label: string;
|
|
5765
5966
|
target: any;
|
|
5766
5967
|
propertyName: string;
|
|
5767
5968
|
step?: number;
|
|
5768
5969
|
onChange?: (newvalue: BABYLON.Vector2) => void;
|
|
5769
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
5970
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5770
5971
|
icon?: string;
|
|
5771
5972
|
iconLabel?: string;
|
|
5772
5973
|
}
|
|
@@ -5791,14 +5992,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5791
5992
|
}
|
|
5792
5993
|
|
|
5793
5994
|
|
|
5794
|
-
|
|
5995
|
+
|
|
5996
|
+
}
|
|
5997
|
+
declare module BABYLON.NodeEditor {
|
|
5998
|
+
|
|
5999
|
+
}
|
|
6000
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6001
|
+
interface IVector3LineComponentProps {
|
|
5795
6002
|
label: string;
|
|
5796
6003
|
target: any;
|
|
5797
6004
|
propertyName: string;
|
|
5798
6005
|
step?: number;
|
|
5799
6006
|
onChange?: (newvalue: BABYLON.Vector3) => void;
|
|
5800
6007
|
useEuler?: boolean;
|
|
5801
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6008
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5802
6009
|
noSlider?: boolean;
|
|
5803
6010
|
icon?: string;
|
|
5804
6011
|
iconLabel?: string;
|
|
@@ -5827,14 +6034,20 @@ declare module BABYLON.NodeEditor {
|
|
|
5827
6034
|
}
|
|
5828
6035
|
|
|
5829
6036
|
|
|
5830
|
-
|
|
6037
|
+
|
|
6038
|
+
}
|
|
6039
|
+
declare module BABYLON.NodeEditor {
|
|
6040
|
+
|
|
6041
|
+
}
|
|
6042
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6043
|
+
interface IVector4LineComponentProps {
|
|
5831
6044
|
label: string;
|
|
5832
6045
|
target: any;
|
|
5833
6046
|
propertyName: string;
|
|
5834
6047
|
step?: number;
|
|
5835
6048
|
onChange?: (newvalue: BABYLON.Vector4) => void;
|
|
5836
6049
|
useEuler?: boolean;
|
|
5837
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6050
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5838
6051
|
icon?: string;
|
|
5839
6052
|
iconLabel?: string;
|
|
5840
6053
|
}
|
|
@@ -5863,7 +6076,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5863
6076
|
}
|
|
5864
6077
|
|
|
5865
6078
|
|
|
5866
|
-
|
|
6079
|
+
|
|
6080
|
+
}
|
|
6081
|
+
declare module BABYLON.NodeEditor {
|
|
6082
|
+
|
|
6083
|
+
}
|
|
6084
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6085
|
+
export class PropertyChangedEvent {
|
|
5867
6086
|
object: any;
|
|
5868
6087
|
property: string;
|
|
5869
6088
|
value: any;
|
|
@@ -5872,7 +6091,13 @@ declare module BABYLON.NodeEditor {
|
|
|
5872
6091
|
}
|
|
5873
6092
|
|
|
5874
6093
|
|
|
5875
|
-
|
|
6094
|
+
|
|
6095
|
+
}
|
|
6096
|
+
declare module BABYLON.NodeEditor {
|
|
6097
|
+
|
|
6098
|
+
}
|
|
6099
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6100
|
+
export class StringTools {
|
|
5876
6101
|
private static _SaveAs;
|
|
5877
6102
|
private static _Click;
|
|
5878
6103
|
/**
|
|
@@ -5885,10 +6110,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5885
6110
|
}
|
|
5886
6111
|
|
|
5887
6112
|
|
|
5888
|
-
|
|
6113
|
+
|
|
6114
|
+
}
|
|
6115
|
+
declare module BABYLON.NodeEditor {
|
|
6116
|
+
|
|
6117
|
+
}
|
|
6118
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6119
|
+
interface ICheckboxPropertyGridComponentProps {
|
|
5889
6120
|
checkbox: BABYLON.GUI.Checkbox;
|
|
5890
|
-
lockObject: LockObject;
|
|
5891
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6121
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6122
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5892
6123
|
}
|
|
5893
6124
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
5894
6125
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
@@ -5896,10 +6127,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5896
6127
|
}
|
|
5897
6128
|
|
|
5898
6129
|
|
|
5899
|
-
|
|
6130
|
+
|
|
6131
|
+
}
|
|
6132
|
+
declare module BABYLON.NodeEditor {
|
|
6133
|
+
|
|
6134
|
+
}
|
|
6135
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6136
|
+
interface IColorPickerPropertyGridComponentProps {
|
|
5900
6137
|
colorPicker: BABYLON.GUI.ColorPicker;
|
|
5901
|
-
lockObject: LockObject;
|
|
5902
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6138
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6139
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5903
6140
|
}
|
|
5904
6141
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
5905
6142
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
@@ -5907,11 +6144,17 @@ declare module BABYLON.NodeEditor {
|
|
|
5907
6144
|
}
|
|
5908
6145
|
|
|
5909
6146
|
|
|
5910
|
-
|
|
6147
|
+
|
|
6148
|
+
}
|
|
6149
|
+
declare module BABYLON.NodeEditor {
|
|
6150
|
+
|
|
6151
|
+
}
|
|
6152
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6153
|
+
interface ICommonControlPropertyGridComponentProps {
|
|
5911
6154
|
controls?: BABYLON.GUI.Control[];
|
|
5912
6155
|
control?: BABYLON.GUI.Control;
|
|
5913
|
-
lockObject: LockObject;
|
|
5914
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6156
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6157
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5915
6158
|
}
|
|
5916
6159
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps> {
|
|
5917
6160
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
|
@@ -5920,10 +6163,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5920
6163
|
}
|
|
5921
6164
|
|
|
5922
6165
|
|
|
5923
|
-
|
|
6166
|
+
|
|
6167
|
+
}
|
|
6168
|
+
declare module BABYLON.NodeEditor {
|
|
6169
|
+
|
|
6170
|
+
}
|
|
6171
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6172
|
+
interface IControlPropertyGridComponentProps {
|
|
5924
6173
|
control: BABYLON.GUI.Control;
|
|
5925
|
-
lockObject: LockObject;
|
|
5926
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6174
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6175
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5927
6176
|
}
|
|
5928
6177
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
5929
6178
|
constructor(props: IControlPropertyGridComponentProps);
|
|
@@ -5931,10 +6180,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5931
6180
|
}
|
|
5932
6181
|
|
|
5933
6182
|
|
|
5934
|
-
|
|
6183
|
+
|
|
6184
|
+
}
|
|
6185
|
+
declare module BABYLON.NodeEditor {
|
|
6186
|
+
|
|
6187
|
+
}
|
|
6188
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6189
|
+
interface IEllipsePropertyGridComponentProps {
|
|
5935
6190
|
ellipse: BABYLON.GUI.Ellipse;
|
|
5936
|
-
lockObject: LockObject;
|
|
5937
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6191
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6192
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5938
6193
|
}
|
|
5939
6194
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
5940
6195
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
@@ -5942,10 +6197,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5942
6197
|
}
|
|
5943
6198
|
|
|
5944
6199
|
|
|
5945
|
-
|
|
6200
|
+
|
|
6201
|
+
}
|
|
6202
|
+
declare module BABYLON.NodeEditor {
|
|
6203
|
+
|
|
6204
|
+
}
|
|
6205
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6206
|
+
interface IGridPropertyGridComponentProps {
|
|
5946
6207
|
grid: BABYLON.GUI.Grid;
|
|
5947
|
-
lockObject: LockObject;
|
|
5948
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6208
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6209
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5949
6210
|
}
|
|
5950
6211
|
export class GridPropertyGridComponent extends React.Component<IGridPropertyGridComponentProps> {
|
|
5951
6212
|
constructor(props: IGridPropertyGridComponentProps);
|
|
@@ -5955,10 +6216,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5955
6216
|
}
|
|
5956
6217
|
|
|
5957
6218
|
|
|
5958
|
-
|
|
6219
|
+
|
|
6220
|
+
}
|
|
6221
|
+
declare module BABYLON.NodeEditor {
|
|
6222
|
+
|
|
6223
|
+
}
|
|
6224
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6225
|
+
interface IImageBasedSliderPropertyGridComponentProps {
|
|
5959
6226
|
imageBasedSlider: BABYLON.GUI.ImageBasedSlider;
|
|
5960
|
-
lockObject: LockObject;
|
|
5961
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6227
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6228
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5962
6229
|
}
|
|
5963
6230
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
5964
6231
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
@@ -5966,10 +6233,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5966
6233
|
}
|
|
5967
6234
|
|
|
5968
6235
|
|
|
5969
|
-
|
|
6236
|
+
|
|
6237
|
+
}
|
|
6238
|
+
declare module BABYLON.NodeEditor {
|
|
6239
|
+
|
|
6240
|
+
}
|
|
6241
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6242
|
+
interface IImagePropertyGridComponentProps {
|
|
5970
6243
|
image: BABYLON.GUI.Image;
|
|
5971
|
-
lockObject: LockObject;
|
|
5972
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6244
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6245
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5973
6246
|
}
|
|
5974
6247
|
export class ImagePropertyGridComponent extends React.Component<IImagePropertyGridComponentProps> {
|
|
5975
6248
|
constructor(props: IImagePropertyGridComponentProps);
|
|
@@ -5977,10 +6250,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5977
6250
|
}
|
|
5978
6251
|
|
|
5979
6252
|
|
|
5980
|
-
|
|
6253
|
+
|
|
6254
|
+
}
|
|
6255
|
+
declare module BABYLON.NodeEditor {
|
|
6256
|
+
|
|
6257
|
+
}
|
|
6258
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6259
|
+
interface IInputTextPropertyGridComponentProps {
|
|
5981
6260
|
inputText: BABYLON.GUI.InputText;
|
|
5982
|
-
lockObject: LockObject;
|
|
5983
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6261
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6262
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5984
6263
|
}
|
|
5985
6264
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
5986
6265
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
@@ -5988,10 +6267,16 @@ declare module BABYLON.NodeEditor {
|
|
|
5988
6267
|
}
|
|
5989
6268
|
|
|
5990
6269
|
|
|
5991
|
-
|
|
6270
|
+
|
|
6271
|
+
}
|
|
6272
|
+
declare module BABYLON.NodeEditor {
|
|
6273
|
+
|
|
6274
|
+
}
|
|
6275
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6276
|
+
interface ILinePropertyGridComponentProps {
|
|
5992
6277
|
line: BABYLON.GUI.Line;
|
|
5993
|
-
lockObject: LockObject;
|
|
5994
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6278
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6279
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
5995
6280
|
}
|
|
5996
6281
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
5997
6282
|
constructor(props: ILinePropertyGridComponentProps);
|
|
@@ -6000,10 +6285,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6000
6285
|
}
|
|
6001
6286
|
|
|
6002
6287
|
|
|
6003
|
-
|
|
6288
|
+
|
|
6289
|
+
}
|
|
6290
|
+
declare module BABYLON.NodeEditor {
|
|
6291
|
+
|
|
6292
|
+
}
|
|
6293
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6294
|
+
interface IRadioButtonPropertyGridComponentProps {
|
|
6004
6295
|
radioButtons: BABYLON.GUI.RadioButton[];
|
|
6005
|
-
lockObject: LockObject;
|
|
6006
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6296
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6297
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6007
6298
|
}
|
|
6008
6299
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
6009
6300
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
@@ -6011,10 +6302,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6011
6302
|
}
|
|
6012
6303
|
|
|
6013
6304
|
|
|
6014
|
-
|
|
6305
|
+
|
|
6306
|
+
}
|
|
6307
|
+
declare module BABYLON.NodeEditor {
|
|
6308
|
+
|
|
6309
|
+
}
|
|
6310
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6311
|
+
interface IRectanglePropertyGridComponentProps {
|
|
6015
6312
|
rectangle: BABYLON.GUI.Rectangle;
|
|
6016
|
-
lockObject: LockObject;
|
|
6017
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6313
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6314
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6018
6315
|
}
|
|
6019
6316
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
6020
6317
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
@@ -6022,10 +6319,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6022
6319
|
}
|
|
6023
6320
|
|
|
6024
6321
|
|
|
6025
|
-
|
|
6322
|
+
|
|
6323
|
+
}
|
|
6324
|
+
declare module BABYLON.NodeEditor {
|
|
6325
|
+
|
|
6326
|
+
}
|
|
6327
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6328
|
+
interface IScrollViewerPropertyGridComponentProps {
|
|
6026
6329
|
scrollViewer: BABYLON.GUI.ScrollViewer;
|
|
6027
|
-
lockObject: LockObject;
|
|
6028
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6330
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6331
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6029
6332
|
}
|
|
6030
6333
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
6031
6334
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
@@ -6033,10 +6336,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6033
6336
|
}
|
|
6034
6337
|
|
|
6035
6338
|
|
|
6036
|
-
|
|
6339
|
+
|
|
6340
|
+
}
|
|
6341
|
+
declare module BABYLON.NodeEditor {
|
|
6342
|
+
|
|
6343
|
+
}
|
|
6344
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6345
|
+
interface ISliderPropertyGridComponentProps {
|
|
6037
6346
|
slider: BABYLON.GUI.Slider;
|
|
6038
|
-
lockObject: LockObject;
|
|
6039
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6347
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6348
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6040
6349
|
}
|
|
6041
6350
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
6042
6351
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
@@ -6044,10 +6353,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6044
6353
|
}
|
|
6045
6354
|
|
|
6046
6355
|
|
|
6047
|
-
|
|
6356
|
+
|
|
6357
|
+
}
|
|
6358
|
+
declare module BABYLON.NodeEditor {
|
|
6359
|
+
|
|
6360
|
+
}
|
|
6361
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6362
|
+
interface IStackPanelPropertyGridComponentProps {
|
|
6048
6363
|
stackPanel: BABYLON.GUI.StackPanel;
|
|
6049
|
-
lockObject: LockObject;
|
|
6050
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6364
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6365
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6051
6366
|
}
|
|
6052
6367
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
6053
6368
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
@@ -6055,10 +6370,16 @@ declare module BABYLON.NodeEditor {
|
|
|
6055
6370
|
}
|
|
6056
6371
|
|
|
6057
6372
|
|
|
6058
|
-
|
|
6373
|
+
|
|
6374
|
+
}
|
|
6375
|
+
declare module BABYLON.NodeEditor {
|
|
6376
|
+
|
|
6377
|
+
}
|
|
6378
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6379
|
+
interface ITextBlockPropertyGridComponentProps {
|
|
6059
6380
|
textBlock: BABYLON.GUI.TextBlock;
|
|
6060
|
-
lockObject: LockObject;
|
|
6061
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
6381
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
6382
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
6062
6383
|
}
|
|
6063
6384
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
6064
6385
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
@@ -6066,7 +6387,13 @@ declare module BABYLON.NodeEditor {
|
|
|
6066
6387
|
}
|
|
6067
6388
|
|
|
6068
6389
|
|
|
6069
|
-
|
|
6390
|
+
|
|
6391
|
+
}
|
|
6392
|
+
declare module BABYLON.NodeEditor {
|
|
6393
|
+
|
|
6394
|
+
}
|
|
6395
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6396
|
+
/**
|
|
6070
6397
|
* Class used to provide lock mechanism
|
|
6071
6398
|
*/
|
|
6072
6399
|
export class LockObject {
|
|
@@ -6079,5 +6406,8 @@ declare module BABYLON.NodeEditor {
|
|
|
6079
6406
|
|
|
6080
6407
|
|
|
6081
6408
|
}
|
|
6409
|
+
declare module BABYLON.NodeEditor {
|
|
6410
|
+
|
|
6411
|
+
}
|
|
6082
6412
|
|
|
6083
6413
|
|