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
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -1685,7 +1685,10 @@ declare module BABYLON.NodeEditor {
|
|
|
1685
1685
|
}
|
|
1686
1686
|
|
|
1687
1687
|
|
|
1688
|
-
|
|
1688
|
+
|
|
1689
|
+
}
|
|
1690
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1691
|
+
export interface IColorComponentEntryProps {
|
|
1689
1692
|
value: number;
|
|
1690
1693
|
label: string;
|
|
1691
1694
|
max?: number;
|
|
@@ -1700,7 +1703,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1700
1703
|
}
|
|
1701
1704
|
|
|
1702
1705
|
|
|
1703
|
-
|
|
1706
|
+
|
|
1707
|
+
}
|
|
1708
|
+
declare module BABYLON.NodeEditor {
|
|
1709
|
+
|
|
1710
|
+
}
|
|
1711
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1712
|
+
/**
|
|
1704
1713
|
* Interface used to specify creation options for color picker
|
|
1705
1714
|
*/
|
|
1706
1715
|
export interface IColorPickerProps {
|
|
@@ -1740,7 +1749,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1740
1749
|
}
|
|
1741
1750
|
|
|
1742
1751
|
|
|
1743
|
-
|
|
1752
|
+
|
|
1753
|
+
}
|
|
1754
|
+
declare module BABYLON.NodeEditor {
|
|
1755
|
+
|
|
1756
|
+
}
|
|
1757
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1758
|
+
export interface IHexColorProps {
|
|
1744
1759
|
value: string;
|
|
1745
1760
|
expectedLength: number;
|
|
1746
1761
|
onChange: (value: string) => void;
|
|
@@ -1757,7 +1772,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1757
1772
|
}
|
|
1758
1773
|
|
|
1759
1774
|
|
|
1760
|
-
|
|
1775
|
+
|
|
1776
|
+
}
|
|
1777
|
+
declare module BABYLON.NodeEditor {
|
|
1778
|
+
|
|
1779
|
+
}
|
|
1780
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1781
|
+
export interface IBooleanLineComponentProps {
|
|
1761
1782
|
label: string;
|
|
1762
1783
|
value: boolean;
|
|
1763
1784
|
icon?: string;
|
|
@@ -1769,7 +1790,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1769
1790
|
}
|
|
1770
1791
|
|
|
1771
1792
|
|
|
1772
|
-
|
|
1793
|
+
|
|
1794
|
+
}
|
|
1795
|
+
declare module BABYLON.NodeEditor {
|
|
1796
|
+
|
|
1797
|
+
}
|
|
1798
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1799
|
+
export interface IButtonLineComponentProps {
|
|
1773
1800
|
label: string;
|
|
1774
1801
|
onClick: () => void;
|
|
1775
1802
|
icon?: string;
|
|
@@ -1781,14 +1808,20 @@ declare module BABYLON.NodeEditor {
|
|
|
1781
1808
|
}
|
|
1782
1809
|
|
|
1783
1810
|
|
|
1784
|
-
|
|
1811
|
+
|
|
1812
|
+
}
|
|
1813
|
+
declare module BABYLON.NodeEditor {
|
|
1814
|
+
|
|
1815
|
+
}
|
|
1816
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1817
|
+
export interface ICheckBoxLineComponentProps {
|
|
1785
1818
|
label?: string;
|
|
1786
1819
|
target?: any;
|
|
1787
1820
|
propertyName?: string;
|
|
1788
1821
|
isSelected?: () => boolean;
|
|
1789
1822
|
onSelect?: (value: boolean) => void;
|
|
1790
1823
|
onValueChanged?: () => void;
|
|
1791
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1824
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
1792
1825
|
disabled?: boolean;
|
|
1793
1826
|
icon?: string;
|
|
1794
1827
|
iconLabel?: string;
|
|
@@ -1815,14 +1848,20 @@ declare module BABYLON.NodeEditor {
|
|
|
1815
1848
|
}
|
|
1816
1849
|
|
|
1817
1850
|
|
|
1818
|
-
|
|
1851
|
+
|
|
1852
|
+
}
|
|
1853
|
+
declare module BABYLON.NodeEditor {
|
|
1854
|
+
|
|
1855
|
+
}
|
|
1856
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1857
|
+
export interface IColor3LineComponentProps {
|
|
1819
1858
|
label: string;
|
|
1820
1859
|
target: any;
|
|
1821
1860
|
propertyName: string;
|
|
1822
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1861
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
1823
1862
|
isLinear?: boolean;
|
|
1824
1863
|
icon?: string;
|
|
1825
|
-
lockObject?: LockObject;
|
|
1864
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
1826
1865
|
iconLabel?: string;
|
|
1827
1866
|
onValueChange?: (value: string) => void;
|
|
1828
1867
|
}
|
|
@@ -1831,32 +1870,44 @@ declare module BABYLON.NodeEditor {
|
|
|
1831
1870
|
}
|
|
1832
1871
|
|
|
1833
1872
|
|
|
1834
|
-
|
|
1873
|
+
|
|
1874
|
+
}
|
|
1875
|
+
declare module BABYLON.NodeEditor {
|
|
1876
|
+
|
|
1877
|
+
}
|
|
1878
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1879
|
+
export interface IColor4LineComponentProps {
|
|
1835
1880
|
label: string;
|
|
1836
1881
|
target?: any;
|
|
1837
1882
|
propertyName: string;
|
|
1838
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1883
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
1839
1884
|
onChange?: () => void;
|
|
1840
1885
|
isLinear?: boolean;
|
|
1841
1886
|
icon?: string;
|
|
1842
1887
|
iconLabel?: string;
|
|
1843
|
-
lockObject?: LockObject;
|
|
1888
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
1844
1889
|
}
|
|
1845
1890
|
export class Color4LineComponent extends React.Component<IColor4LineComponentProps> {
|
|
1846
1891
|
render(): JSX.Element;
|
|
1847
1892
|
}
|
|
1848
1893
|
|
|
1849
1894
|
|
|
1850
|
-
|
|
1895
|
+
|
|
1896
|
+
}
|
|
1897
|
+
declare module BABYLON.NodeEditor {
|
|
1898
|
+
|
|
1899
|
+
}
|
|
1900
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1901
|
+
export interface IColorLineComponentProps {
|
|
1851
1902
|
label: string;
|
|
1852
1903
|
target?: any;
|
|
1853
1904
|
propertyName: string;
|
|
1854
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
1905
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
1855
1906
|
onChange?: () => void;
|
|
1856
1907
|
isLinear?: boolean;
|
|
1857
1908
|
icon?: string;
|
|
1858
1909
|
iconLabel?: string;
|
|
1859
|
-
lockObject?: LockObject;
|
|
1910
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
1860
1911
|
disableAlpha?: boolean;
|
|
1861
1912
|
}
|
|
1862
1913
|
interface IColorLineComponentState {
|
|
@@ -1883,7 +1934,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1883
1934
|
}
|
|
1884
1935
|
|
|
1885
1936
|
|
|
1886
|
-
|
|
1937
|
+
|
|
1938
|
+
}
|
|
1939
|
+
declare module BABYLON.NodeEditor {
|
|
1940
|
+
|
|
1941
|
+
}
|
|
1942
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1943
|
+
export interface IColorPickerComponentProps {
|
|
1887
1944
|
value: BABYLON.Color4 | BABYLON.Color3;
|
|
1888
1945
|
linearHint?: boolean;
|
|
1889
1946
|
onColorChanged: (newOne: string) => void;
|
|
@@ -1911,7 +1968,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1911
1968
|
}
|
|
1912
1969
|
|
|
1913
1970
|
|
|
1914
|
-
|
|
1971
|
+
|
|
1972
|
+
}
|
|
1973
|
+
declare module BABYLON.NodeEditor {
|
|
1974
|
+
|
|
1975
|
+
}
|
|
1976
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1977
|
+
export interface IButtonLineComponentProps {
|
|
1915
1978
|
data: string;
|
|
1916
1979
|
tooltip: string;
|
|
1917
1980
|
}
|
|
@@ -1921,7 +1984,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1921
1984
|
}
|
|
1922
1985
|
|
|
1923
1986
|
|
|
1924
|
-
|
|
1987
|
+
|
|
1988
|
+
}
|
|
1989
|
+
declare module BABYLON.NodeEditor {
|
|
1990
|
+
|
|
1991
|
+
}
|
|
1992
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1993
|
+
interface IFileButtonLineComponentProps {
|
|
1925
1994
|
label: string;
|
|
1926
1995
|
onClick: (file: File) => void;
|
|
1927
1996
|
accept: string;
|
|
@@ -1938,7 +2007,13 @@ declare module BABYLON.NodeEditor {
|
|
|
1938
2007
|
}
|
|
1939
2008
|
|
|
1940
2009
|
|
|
1941
|
-
|
|
2010
|
+
|
|
2011
|
+
}
|
|
2012
|
+
declare module BABYLON.NodeEditor {
|
|
2013
|
+
|
|
2014
|
+
}
|
|
2015
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2016
|
+
interface IFileMultipleButtonLineComponentProps {
|
|
1942
2017
|
label: string;
|
|
1943
2018
|
onClick: (event: any) => void;
|
|
1944
2019
|
accept: string;
|
|
@@ -1955,14 +2030,20 @@ declare module BABYLON.NodeEditor {
|
|
|
1955
2030
|
}
|
|
1956
2031
|
|
|
1957
2032
|
|
|
1958
|
-
|
|
2033
|
+
|
|
2034
|
+
}
|
|
2035
|
+
declare module BABYLON.NodeEditor {
|
|
2036
|
+
|
|
2037
|
+
}
|
|
2038
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2039
|
+
interface IFloatLineComponentProps {
|
|
1959
2040
|
label: string;
|
|
1960
2041
|
target: any;
|
|
1961
2042
|
propertyName: string;
|
|
1962
|
-
lockObject?: LockObject;
|
|
2043
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
1963
2044
|
onChange?: (newValue: number) => void;
|
|
1964
2045
|
isInteger?: boolean;
|
|
1965
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2046
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
1966
2047
|
additionalClass?: string;
|
|
1967
2048
|
step?: string;
|
|
1968
2049
|
digits?: number;
|
|
@@ -2002,15 +2083,21 @@ declare module BABYLON.NodeEditor {
|
|
|
2002
2083
|
}
|
|
2003
2084
|
|
|
2004
2085
|
|
|
2005
|
-
|
|
2086
|
+
|
|
2087
|
+
}
|
|
2088
|
+
declare module BABYLON.NodeEditor {
|
|
2089
|
+
|
|
2090
|
+
}
|
|
2091
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2092
|
+
interface IHexLineComponentProps {
|
|
2006
2093
|
label: string;
|
|
2007
2094
|
target: any;
|
|
2008
2095
|
propertyName: string;
|
|
2009
|
-
lockObject?: LockObject;
|
|
2096
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2010
2097
|
onChange?: (newValue: number) => void;
|
|
2011
2098
|
isInteger?: boolean;
|
|
2012
2099
|
replaySourceReplacement?: string;
|
|
2013
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2100
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2014
2101
|
additionalClass?: string;
|
|
2015
2102
|
step?: string;
|
|
2016
2103
|
digits?: number;
|
|
@@ -2039,7 +2126,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2039
2126
|
}
|
|
2040
2127
|
|
|
2041
2128
|
|
|
2042
|
-
|
|
2129
|
+
|
|
2130
|
+
}
|
|
2131
|
+
declare module BABYLON.NodeEditor {
|
|
2132
|
+
|
|
2133
|
+
}
|
|
2134
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2135
|
+
export interface IIconButtonLineComponentProps {
|
|
2043
2136
|
icon: string;
|
|
2044
2137
|
onClick: () => void;
|
|
2045
2138
|
tooltip: string;
|
|
@@ -2051,7 +2144,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2051
2144
|
}
|
|
2052
2145
|
|
|
2053
2146
|
|
|
2054
|
-
|
|
2147
|
+
|
|
2148
|
+
}
|
|
2149
|
+
declare module BABYLON.NodeEditor {
|
|
2150
|
+
|
|
2151
|
+
}
|
|
2152
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2153
|
+
interface IIconComponentProps {
|
|
2055
2154
|
icon: string;
|
|
2056
2155
|
label?: string;
|
|
2057
2156
|
}
|
|
@@ -2060,7 +2159,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2060
2159
|
}
|
|
2061
2160
|
|
|
2062
2161
|
|
|
2063
|
-
|
|
2162
|
+
|
|
2163
|
+
}
|
|
2164
|
+
declare module BABYLON.NodeEditor {
|
|
2165
|
+
|
|
2166
|
+
}
|
|
2167
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2168
|
+
interface IIndentedTextLineComponentProps {
|
|
2064
2169
|
value?: string;
|
|
2065
2170
|
color?: string;
|
|
2066
2171
|
underline?: boolean;
|
|
@@ -2076,7 +2181,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2076
2181
|
}
|
|
2077
2182
|
|
|
2078
2183
|
|
|
2079
|
-
|
|
2184
|
+
|
|
2185
|
+
}
|
|
2186
|
+
declare module BABYLON.NodeEditor {
|
|
2187
|
+
|
|
2188
|
+
}
|
|
2189
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2190
|
+
interface IInputArrowsComponentProps {
|
|
2080
2191
|
incrementValue: (amount: number) => void;
|
|
2081
2192
|
setDragging: (dragging: boolean) => void;
|
|
2082
2193
|
}
|
|
@@ -2089,14 +2200,26 @@ declare module BABYLON.NodeEditor {
|
|
|
2089
2200
|
}
|
|
2090
2201
|
|
|
2091
2202
|
|
|
2092
|
-
|
|
2203
|
+
|
|
2204
|
+
}
|
|
2205
|
+
declare module BABYLON.NodeEditor {
|
|
2206
|
+
|
|
2207
|
+
}
|
|
2208
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2209
|
+
export interface ISelectedLineContainer {
|
|
2093
2210
|
selectedLineContainerTitles: Array<string>;
|
|
2094
2211
|
selectedLineContainerTitlesNoFocus: Array<string>;
|
|
2095
2212
|
}
|
|
2096
2213
|
|
|
2097
2214
|
|
|
2098
|
-
|
|
2099
|
-
|
|
2215
|
+
|
|
2216
|
+
}
|
|
2217
|
+
declare module BABYLON.NodeEditor {
|
|
2218
|
+
|
|
2219
|
+
}
|
|
2220
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2221
|
+
interface ILineContainerComponentProps {
|
|
2222
|
+
selection?: BABYLON.NodeEditor.SharedUIComponents.ISelectedLineContainer;
|
|
2100
2223
|
title: string;
|
|
2101
2224
|
children: any[] | any;
|
|
2102
2225
|
closed?: boolean;
|
|
@@ -2113,7 +2236,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2113
2236
|
}
|
|
2114
2237
|
|
|
2115
2238
|
|
|
2116
|
-
|
|
2239
|
+
|
|
2240
|
+
}
|
|
2241
|
+
declare module BABYLON.NodeEditor {
|
|
2242
|
+
|
|
2243
|
+
}
|
|
2244
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2245
|
+
interface ILinkButtonComponentProps {
|
|
2117
2246
|
label: string;
|
|
2118
2247
|
buttonLabel: string;
|
|
2119
2248
|
url?: string;
|
|
@@ -2128,7 +2257,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2128
2257
|
}
|
|
2129
2258
|
|
|
2130
2259
|
|
|
2131
|
-
|
|
2260
|
+
|
|
2261
|
+
}
|
|
2262
|
+
declare module BABYLON.NodeEditor {
|
|
2263
|
+
|
|
2264
|
+
}
|
|
2265
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2266
|
+
interface IMessageLineComponentProps {
|
|
2132
2267
|
text: string;
|
|
2133
2268
|
color?: string;
|
|
2134
2269
|
icon?: any;
|
|
@@ -2139,7 +2274,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2139
2274
|
}
|
|
2140
2275
|
|
|
2141
2276
|
|
|
2142
|
-
|
|
2277
|
+
|
|
2278
|
+
}
|
|
2279
|
+
declare module BABYLON.NodeEditor {
|
|
2280
|
+
|
|
2281
|
+
}
|
|
2282
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2283
|
+
interface INumericInputComponentProps {
|
|
2143
2284
|
label: string;
|
|
2144
2285
|
value: number;
|
|
2145
2286
|
step?: number;
|
|
@@ -2165,7 +2306,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2165
2306
|
}
|
|
2166
2307
|
|
|
2167
2308
|
|
|
2168
|
-
|
|
2309
|
+
|
|
2310
|
+
}
|
|
2311
|
+
declare module BABYLON.NodeEditor {
|
|
2312
|
+
|
|
2313
|
+
}
|
|
2314
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2315
|
+
export var Null_Value: number;
|
|
2169
2316
|
export interface IOptionsLineComponentProps {
|
|
2170
2317
|
label: string;
|
|
2171
2318
|
target: any;
|
|
@@ -2174,7 +2321,7 @@ declare module BABYLON.NodeEditor {
|
|
|
2174
2321
|
noDirectUpdate?: boolean;
|
|
2175
2322
|
onSelect?: (value: number) => void;
|
|
2176
2323
|
extractValue?: () => number;
|
|
2177
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2324
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2178
2325
|
allowNullValue?: boolean;
|
|
2179
2326
|
icon?: string;
|
|
2180
2327
|
iconLabel?: string;
|
|
@@ -2195,13 +2342,25 @@ declare module BABYLON.NodeEditor {
|
|
|
2195
2342
|
}
|
|
2196
2343
|
|
|
2197
2344
|
|
|
2198
|
-
|
|
2345
|
+
|
|
2346
|
+
}
|
|
2347
|
+
declare module BABYLON.NodeEditor {
|
|
2348
|
+
|
|
2349
|
+
}
|
|
2350
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2351
|
+
export class Popup {
|
|
2199
2352
|
static CreatePopup(title: string, windowVariableName: string, width?: number, height?: number): HTMLDivElement | null;
|
|
2200
2353
|
private static _CopyStyles;
|
|
2201
2354
|
}
|
|
2202
2355
|
|
|
2203
2356
|
|
|
2204
|
-
|
|
2357
|
+
|
|
2358
|
+
}
|
|
2359
|
+
declare module BABYLON.NodeEditor {
|
|
2360
|
+
|
|
2361
|
+
}
|
|
2362
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2363
|
+
interface IRadioButtonLineComponentProps {
|
|
2205
2364
|
onSelectionChangedObservable: BABYLON.Observable<RadioButtonLineComponent>;
|
|
2206
2365
|
label: string;
|
|
2207
2366
|
isSelected: () => boolean;
|
|
@@ -2221,7 +2380,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2221
2380
|
}
|
|
2222
2381
|
|
|
2223
2382
|
|
|
2224
|
-
|
|
2383
|
+
|
|
2384
|
+
}
|
|
2385
|
+
declare module BABYLON.NodeEditor {
|
|
2386
|
+
|
|
2387
|
+
}
|
|
2388
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2389
|
+
interface ISliderLineComponentProps {
|
|
2225
2390
|
label: string;
|
|
2226
2391
|
target?: any;
|
|
2227
2392
|
propertyName?: string;
|
|
@@ -2232,12 +2397,12 @@ declare module BABYLON.NodeEditor {
|
|
|
2232
2397
|
useEuler?: boolean;
|
|
2233
2398
|
onChange?: (value: number) => void;
|
|
2234
2399
|
onInput?: (value: number) => void;
|
|
2235
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2400
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2236
2401
|
decimalCount?: number;
|
|
2237
2402
|
margin?: boolean;
|
|
2238
2403
|
icon?: string;
|
|
2239
2404
|
iconLabel?: string;
|
|
2240
|
-
lockObject?: LockObject;
|
|
2405
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2241
2406
|
unit?: React.ReactNode;
|
|
2242
2407
|
}
|
|
2243
2408
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
|
@@ -2255,7 +2420,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2255
2420
|
}
|
|
2256
2421
|
|
|
2257
2422
|
|
|
2258
|
-
|
|
2423
|
+
|
|
2424
|
+
}
|
|
2425
|
+
declare module BABYLON.NodeEditor {
|
|
2426
|
+
|
|
2427
|
+
}
|
|
2428
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2429
|
+
export const conflictingValuesPlaceholder = "\u2014";
|
|
2259
2430
|
/**
|
|
2260
2431
|
*
|
|
2261
2432
|
* @param targets a list of selected targets
|
|
@@ -2263,17 +2434,23 @@ declare module BABYLON.NodeEditor {
|
|
|
2263
2434
|
* @param getProperty
|
|
2264
2435
|
* @returns a proxy object that can be passed as a target into the input
|
|
2265
2436
|
*/
|
|
2266
|
-
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
2437
|
+
export function makeTargetsProxy<Type>(targets: Type[], onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>, getProperty?: (target: Type, property: keyof Type) => any): any;
|
|
2438
|
+
|
|
2439
|
+
|
|
2267
2440
|
|
|
2441
|
+
}
|
|
2442
|
+
declare module BABYLON.NodeEditor {
|
|
2268
2443
|
|
|
2269
|
-
|
|
2444
|
+
}
|
|
2445
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2446
|
+
export interface ITextInputLineComponentProps {
|
|
2270
2447
|
label?: string;
|
|
2271
|
-
lockObject?: LockObject;
|
|
2448
|
+
lockObject?: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2272
2449
|
target?: any;
|
|
2273
2450
|
propertyName?: string;
|
|
2274
2451
|
value?: string;
|
|
2275
2452
|
onChange?: (value: string) => void;
|
|
2276
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2453
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2277
2454
|
icon?: string;
|
|
2278
2455
|
iconLabel?: string;
|
|
2279
2456
|
noUnderline?: boolean;
|
|
@@ -2309,7 +2486,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2309
2486
|
}
|
|
2310
2487
|
|
|
2311
2488
|
|
|
2312
|
-
|
|
2489
|
+
|
|
2490
|
+
}
|
|
2491
|
+
declare module BABYLON.NodeEditor {
|
|
2492
|
+
|
|
2493
|
+
}
|
|
2494
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2495
|
+
interface ITextLineComponentProps {
|
|
2313
2496
|
label?: string;
|
|
2314
2497
|
value?: string;
|
|
2315
2498
|
color?: string;
|
|
@@ -2330,7 +2513,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2330
2513
|
}
|
|
2331
2514
|
|
|
2332
2515
|
|
|
2333
|
-
|
|
2516
|
+
|
|
2517
|
+
}
|
|
2518
|
+
declare module BABYLON.NodeEditor {
|
|
2519
|
+
|
|
2520
|
+
}
|
|
2521
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2522
|
+
/// <reference types="react" />
|
|
2334
2523
|
interface IUnitButtonProps {
|
|
2335
2524
|
unit: string;
|
|
2336
2525
|
locked?: boolean;
|
|
@@ -2339,7 +2528,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2339
2528
|
export function UnitButton(props: IUnitButtonProps): JSX.Element;
|
|
2340
2529
|
|
|
2341
2530
|
|
|
2342
|
-
|
|
2531
|
+
|
|
2532
|
+
}
|
|
2533
|
+
declare module BABYLON.NodeEditor {
|
|
2534
|
+
|
|
2535
|
+
}
|
|
2536
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2537
|
+
interface IValueLineComponentProps {
|
|
2343
2538
|
label: string;
|
|
2344
2539
|
value: number;
|
|
2345
2540
|
color?: string;
|
|
@@ -2354,13 +2549,19 @@ declare module BABYLON.NodeEditor {
|
|
|
2354
2549
|
}
|
|
2355
2550
|
|
|
2356
2551
|
|
|
2357
|
-
|
|
2552
|
+
|
|
2553
|
+
}
|
|
2554
|
+
declare module BABYLON.NodeEditor {
|
|
2555
|
+
|
|
2556
|
+
}
|
|
2557
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2558
|
+
interface IVector2LineComponentProps {
|
|
2358
2559
|
label: string;
|
|
2359
2560
|
target: any;
|
|
2360
2561
|
propertyName: string;
|
|
2361
2562
|
step?: number;
|
|
2362
2563
|
onChange?: (newvalue: BABYLON.Vector2) => void;
|
|
2363
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2564
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2364
2565
|
icon?: string;
|
|
2365
2566
|
iconLabel?: string;
|
|
2366
2567
|
}
|
|
@@ -2385,14 +2586,20 @@ declare module BABYLON.NodeEditor {
|
|
|
2385
2586
|
}
|
|
2386
2587
|
|
|
2387
2588
|
|
|
2388
|
-
|
|
2589
|
+
|
|
2590
|
+
}
|
|
2591
|
+
declare module BABYLON.NodeEditor {
|
|
2592
|
+
|
|
2593
|
+
}
|
|
2594
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2595
|
+
interface IVector3LineComponentProps {
|
|
2389
2596
|
label: string;
|
|
2390
2597
|
target: any;
|
|
2391
2598
|
propertyName: string;
|
|
2392
2599
|
step?: number;
|
|
2393
2600
|
onChange?: (newvalue: BABYLON.Vector3) => void;
|
|
2394
2601
|
useEuler?: boolean;
|
|
2395
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2602
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2396
2603
|
noSlider?: boolean;
|
|
2397
2604
|
icon?: string;
|
|
2398
2605
|
iconLabel?: string;
|
|
@@ -2421,14 +2628,20 @@ declare module BABYLON.NodeEditor {
|
|
|
2421
2628
|
}
|
|
2422
2629
|
|
|
2423
2630
|
|
|
2424
|
-
|
|
2631
|
+
|
|
2632
|
+
}
|
|
2633
|
+
declare module BABYLON.NodeEditor {
|
|
2634
|
+
|
|
2635
|
+
}
|
|
2636
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2637
|
+
interface IVector4LineComponentProps {
|
|
2425
2638
|
label: string;
|
|
2426
2639
|
target: any;
|
|
2427
2640
|
propertyName: string;
|
|
2428
2641
|
step?: number;
|
|
2429
2642
|
onChange?: (newvalue: BABYLON.Vector4) => void;
|
|
2430
2643
|
useEuler?: boolean;
|
|
2431
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2644
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2432
2645
|
icon?: string;
|
|
2433
2646
|
iconLabel?: string;
|
|
2434
2647
|
}
|
|
@@ -2457,7 +2670,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2457
2670
|
}
|
|
2458
2671
|
|
|
2459
2672
|
|
|
2460
|
-
|
|
2673
|
+
|
|
2674
|
+
}
|
|
2675
|
+
declare module BABYLON.NodeEditor {
|
|
2676
|
+
|
|
2677
|
+
}
|
|
2678
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2679
|
+
export class PropertyChangedEvent {
|
|
2461
2680
|
object: any;
|
|
2462
2681
|
property: string;
|
|
2463
2682
|
value: any;
|
|
@@ -2466,7 +2685,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2466
2685
|
}
|
|
2467
2686
|
|
|
2468
2687
|
|
|
2469
|
-
|
|
2688
|
+
|
|
2689
|
+
}
|
|
2690
|
+
declare module BABYLON.NodeEditor {
|
|
2691
|
+
|
|
2692
|
+
}
|
|
2693
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2694
|
+
export class StringTools {
|
|
2470
2695
|
private static _SaveAs;
|
|
2471
2696
|
private static _Click;
|
|
2472
2697
|
/**
|
|
@@ -2479,10 +2704,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2479
2704
|
}
|
|
2480
2705
|
|
|
2481
2706
|
|
|
2482
|
-
|
|
2707
|
+
|
|
2708
|
+
}
|
|
2709
|
+
declare module BABYLON.NodeEditor {
|
|
2710
|
+
|
|
2711
|
+
}
|
|
2712
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2713
|
+
interface ICheckboxPropertyGridComponentProps {
|
|
2483
2714
|
checkbox: BABYLON.GUI.Checkbox;
|
|
2484
|
-
lockObject: LockObject;
|
|
2485
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2715
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2716
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2486
2717
|
}
|
|
2487
2718
|
export class CheckboxPropertyGridComponent extends React.Component<ICheckboxPropertyGridComponentProps> {
|
|
2488
2719
|
constructor(props: ICheckboxPropertyGridComponentProps);
|
|
@@ -2490,10 +2721,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2490
2721
|
}
|
|
2491
2722
|
|
|
2492
2723
|
|
|
2493
|
-
|
|
2724
|
+
|
|
2725
|
+
}
|
|
2726
|
+
declare module BABYLON.NodeEditor {
|
|
2727
|
+
|
|
2728
|
+
}
|
|
2729
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2730
|
+
interface IColorPickerPropertyGridComponentProps {
|
|
2494
2731
|
colorPicker: BABYLON.GUI.ColorPicker;
|
|
2495
|
-
lockObject: LockObject;
|
|
2496
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2732
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2733
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2497
2734
|
}
|
|
2498
2735
|
export class ColorPickerPropertyGridComponent extends React.Component<IColorPickerPropertyGridComponentProps> {
|
|
2499
2736
|
constructor(props: IColorPickerPropertyGridComponentProps);
|
|
@@ -2501,11 +2738,17 @@ declare module BABYLON.NodeEditor {
|
|
|
2501
2738
|
}
|
|
2502
2739
|
|
|
2503
2740
|
|
|
2504
|
-
|
|
2741
|
+
|
|
2742
|
+
}
|
|
2743
|
+
declare module BABYLON.NodeEditor {
|
|
2744
|
+
|
|
2745
|
+
}
|
|
2746
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2747
|
+
interface ICommonControlPropertyGridComponentProps {
|
|
2505
2748
|
controls?: BABYLON.GUI.Control[];
|
|
2506
2749
|
control?: BABYLON.GUI.Control;
|
|
2507
|
-
lockObject: LockObject;
|
|
2508
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2750
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2751
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2509
2752
|
}
|
|
2510
2753
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps> {
|
|
2511
2754
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
|
@@ -2514,10 +2757,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2514
2757
|
}
|
|
2515
2758
|
|
|
2516
2759
|
|
|
2517
|
-
|
|
2760
|
+
|
|
2761
|
+
}
|
|
2762
|
+
declare module BABYLON.NodeEditor {
|
|
2763
|
+
|
|
2764
|
+
}
|
|
2765
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2766
|
+
interface IControlPropertyGridComponentProps {
|
|
2518
2767
|
control: BABYLON.GUI.Control;
|
|
2519
|
-
lockObject: LockObject;
|
|
2520
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2768
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2769
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2521
2770
|
}
|
|
2522
2771
|
export class ControlPropertyGridComponent extends React.Component<IControlPropertyGridComponentProps> {
|
|
2523
2772
|
constructor(props: IControlPropertyGridComponentProps);
|
|
@@ -2525,10 +2774,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2525
2774
|
}
|
|
2526
2775
|
|
|
2527
2776
|
|
|
2528
|
-
|
|
2777
|
+
|
|
2778
|
+
}
|
|
2779
|
+
declare module BABYLON.NodeEditor {
|
|
2780
|
+
|
|
2781
|
+
}
|
|
2782
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2783
|
+
interface IEllipsePropertyGridComponentProps {
|
|
2529
2784
|
ellipse: BABYLON.GUI.Ellipse;
|
|
2530
|
-
lockObject: LockObject;
|
|
2531
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2785
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2786
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2532
2787
|
}
|
|
2533
2788
|
export class EllipsePropertyGridComponent extends React.Component<IEllipsePropertyGridComponentProps> {
|
|
2534
2789
|
constructor(props: IEllipsePropertyGridComponentProps);
|
|
@@ -2536,10 +2791,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2536
2791
|
}
|
|
2537
2792
|
|
|
2538
2793
|
|
|
2539
|
-
|
|
2794
|
+
|
|
2795
|
+
}
|
|
2796
|
+
declare module BABYLON.NodeEditor {
|
|
2797
|
+
|
|
2798
|
+
}
|
|
2799
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2800
|
+
interface IGridPropertyGridComponentProps {
|
|
2540
2801
|
grid: BABYLON.GUI.Grid;
|
|
2541
|
-
lockObject: LockObject;
|
|
2542
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2802
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2803
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2543
2804
|
}
|
|
2544
2805
|
export class GridPropertyGridComponent extends React.Component<IGridPropertyGridComponentProps> {
|
|
2545
2806
|
constructor(props: IGridPropertyGridComponentProps);
|
|
@@ -2549,10 +2810,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2549
2810
|
}
|
|
2550
2811
|
|
|
2551
2812
|
|
|
2552
|
-
|
|
2813
|
+
|
|
2814
|
+
}
|
|
2815
|
+
declare module BABYLON.NodeEditor {
|
|
2816
|
+
|
|
2817
|
+
}
|
|
2818
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2819
|
+
interface IImageBasedSliderPropertyGridComponentProps {
|
|
2553
2820
|
imageBasedSlider: BABYLON.GUI.ImageBasedSlider;
|
|
2554
|
-
lockObject: LockObject;
|
|
2555
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2821
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2822
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2556
2823
|
}
|
|
2557
2824
|
export class ImageBasedSliderPropertyGridComponent extends React.Component<IImageBasedSliderPropertyGridComponentProps> {
|
|
2558
2825
|
constructor(props: IImageBasedSliderPropertyGridComponentProps);
|
|
@@ -2560,10 +2827,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2560
2827
|
}
|
|
2561
2828
|
|
|
2562
2829
|
|
|
2563
|
-
|
|
2830
|
+
|
|
2831
|
+
}
|
|
2832
|
+
declare module BABYLON.NodeEditor {
|
|
2833
|
+
|
|
2834
|
+
}
|
|
2835
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2836
|
+
interface IImagePropertyGridComponentProps {
|
|
2564
2837
|
image: BABYLON.GUI.Image;
|
|
2565
|
-
lockObject: LockObject;
|
|
2566
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2838
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2839
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2567
2840
|
}
|
|
2568
2841
|
export class ImagePropertyGridComponent extends React.Component<IImagePropertyGridComponentProps> {
|
|
2569
2842
|
constructor(props: IImagePropertyGridComponentProps);
|
|
@@ -2571,10 +2844,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2571
2844
|
}
|
|
2572
2845
|
|
|
2573
2846
|
|
|
2574
|
-
|
|
2847
|
+
|
|
2848
|
+
}
|
|
2849
|
+
declare module BABYLON.NodeEditor {
|
|
2850
|
+
|
|
2851
|
+
}
|
|
2852
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2853
|
+
interface IInputTextPropertyGridComponentProps {
|
|
2575
2854
|
inputText: BABYLON.GUI.InputText;
|
|
2576
|
-
lockObject: LockObject;
|
|
2577
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2855
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2856
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2578
2857
|
}
|
|
2579
2858
|
export class InputTextPropertyGridComponent extends React.Component<IInputTextPropertyGridComponentProps> {
|
|
2580
2859
|
constructor(props: IInputTextPropertyGridComponentProps);
|
|
@@ -2582,10 +2861,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2582
2861
|
}
|
|
2583
2862
|
|
|
2584
2863
|
|
|
2585
|
-
|
|
2864
|
+
|
|
2865
|
+
}
|
|
2866
|
+
declare module BABYLON.NodeEditor {
|
|
2867
|
+
|
|
2868
|
+
}
|
|
2869
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2870
|
+
interface ILinePropertyGridComponentProps {
|
|
2586
2871
|
line: BABYLON.GUI.Line;
|
|
2587
|
-
lockObject: LockObject;
|
|
2588
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2872
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2873
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2589
2874
|
}
|
|
2590
2875
|
export class LinePropertyGridComponent extends React.Component<ILinePropertyGridComponentProps> {
|
|
2591
2876
|
constructor(props: ILinePropertyGridComponentProps);
|
|
@@ -2594,10 +2879,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2594
2879
|
}
|
|
2595
2880
|
|
|
2596
2881
|
|
|
2597
|
-
|
|
2882
|
+
|
|
2883
|
+
}
|
|
2884
|
+
declare module BABYLON.NodeEditor {
|
|
2885
|
+
|
|
2886
|
+
}
|
|
2887
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2888
|
+
interface IRadioButtonPropertyGridComponentProps {
|
|
2598
2889
|
radioButtons: BABYLON.GUI.RadioButton[];
|
|
2599
|
-
lockObject: LockObject;
|
|
2600
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2890
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2891
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2601
2892
|
}
|
|
2602
2893
|
export class RadioButtonPropertyGridComponent extends React.Component<IRadioButtonPropertyGridComponentProps> {
|
|
2603
2894
|
constructor(props: IRadioButtonPropertyGridComponentProps);
|
|
@@ -2605,10 +2896,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2605
2896
|
}
|
|
2606
2897
|
|
|
2607
2898
|
|
|
2608
|
-
|
|
2899
|
+
|
|
2900
|
+
}
|
|
2901
|
+
declare module BABYLON.NodeEditor {
|
|
2902
|
+
|
|
2903
|
+
}
|
|
2904
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2905
|
+
interface IRectanglePropertyGridComponentProps {
|
|
2609
2906
|
rectangle: BABYLON.GUI.Rectangle;
|
|
2610
|
-
lockObject: LockObject;
|
|
2611
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2907
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2908
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2612
2909
|
}
|
|
2613
2910
|
export class RectanglePropertyGridComponent extends React.Component<IRectanglePropertyGridComponentProps> {
|
|
2614
2911
|
constructor(props: IRectanglePropertyGridComponentProps);
|
|
@@ -2616,10 +2913,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2616
2913
|
}
|
|
2617
2914
|
|
|
2618
2915
|
|
|
2619
|
-
|
|
2916
|
+
|
|
2917
|
+
}
|
|
2918
|
+
declare module BABYLON.NodeEditor {
|
|
2919
|
+
|
|
2920
|
+
}
|
|
2921
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2922
|
+
interface IScrollViewerPropertyGridComponentProps {
|
|
2620
2923
|
scrollViewer: BABYLON.GUI.ScrollViewer;
|
|
2621
|
-
lockObject: LockObject;
|
|
2622
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2924
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2925
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2623
2926
|
}
|
|
2624
2927
|
export class ScrollViewerPropertyGridComponent extends React.Component<IScrollViewerPropertyGridComponentProps> {
|
|
2625
2928
|
constructor(props: IScrollViewerPropertyGridComponentProps);
|
|
@@ -2627,10 +2930,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2627
2930
|
}
|
|
2628
2931
|
|
|
2629
2932
|
|
|
2630
|
-
|
|
2933
|
+
|
|
2934
|
+
}
|
|
2935
|
+
declare module BABYLON.NodeEditor {
|
|
2936
|
+
|
|
2937
|
+
}
|
|
2938
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2939
|
+
interface ISliderPropertyGridComponentProps {
|
|
2631
2940
|
slider: BABYLON.GUI.Slider;
|
|
2632
|
-
lockObject: LockObject;
|
|
2633
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2941
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2942
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2634
2943
|
}
|
|
2635
2944
|
export class SliderPropertyGridComponent extends React.Component<ISliderPropertyGridComponentProps> {
|
|
2636
2945
|
constructor(props: ISliderPropertyGridComponentProps);
|
|
@@ -2638,10 +2947,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2638
2947
|
}
|
|
2639
2948
|
|
|
2640
2949
|
|
|
2641
|
-
|
|
2950
|
+
|
|
2951
|
+
}
|
|
2952
|
+
declare module BABYLON.NodeEditor {
|
|
2953
|
+
|
|
2954
|
+
}
|
|
2955
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2956
|
+
interface IStackPanelPropertyGridComponentProps {
|
|
2642
2957
|
stackPanel: BABYLON.GUI.StackPanel;
|
|
2643
|
-
lockObject: LockObject;
|
|
2644
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2958
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2959
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2645
2960
|
}
|
|
2646
2961
|
export class StackPanelPropertyGridComponent extends React.Component<IStackPanelPropertyGridComponentProps> {
|
|
2647
2962
|
constructor(props: IStackPanelPropertyGridComponentProps);
|
|
@@ -2649,10 +2964,16 @@ declare module BABYLON.NodeEditor {
|
|
|
2649
2964
|
}
|
|
2650
2965
|
|
|
2651
2966
|
|
|
2652
|
-
|
|
2967
|
+
|
|
2968
|
+
}
|
|
2969
|
+
declare module BABYLON.NodeEditor {
|
|
2970
|
+
|
|
2971
|
+
}
|
|
2972
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2973
|
+
interface ITextBlockPropertyGridComponentProps {
|
|
2653
2974
|
textBlock: BABYLON.GUI.TextBlock;
|
|
2654
|
-
lockObject: LockObject;
|
|
2655
|
-
onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
|
|
2975
|
+
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
2976
|
+
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|
|
2656
2977
|
}
|
|
2657
2978
|
export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
|
|
2658
2979
|
constructor(props: ITextBlockPropertyGridComponentProps);
|
|
@@ -2660,7 +2981,13 @@ declare module BABYLON.NodeEditor {
|
|
|
2660
2981
|
}
|
|
2661
2982
|
|
|
2662
2983
|
|
|
2663
|
-
|
|
2984
|
+
|
|
2985
|
+
}
|
|
2986
|
+
declare module BABYLON.NodeEditor {
|
|
2987
|
+
|
|
2988
|
+
}
|
|
2989
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2990
|
+
/**
|
|
2664
2991
|
* Class used to provide lock mechanism
|
|
2665
2992
|
*/
|
|
2666
2993
|
export class LockObject {
|
|
@@ -2673,6 +3000,9 @@ declare module BABYLON.NodeEditor {
|
|
|
2673
3000
|
|
|
2674
3001
|
|
|
2675
3002
|
}
|
|
3003
|
+
declare module BABYLON.NodeEditor {
|
|
3004
|
+
|
|
3005
|
+
}
|
|
2676
3006
|
|
|
2677
3007
|
|
|
2678
3008
|
|