babylonjs-node-geometry-editor 7.4.0 → 7.6.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.
|
@@ -2013,6 +2013,19 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2013
2013
|
|
|
2014
2014
|
|
|
2015
2015
|
|
|
2016
|
+
}
|
|
2017
|
+
declare module BABYLON.NodeGeometryEditor {
|
|
2018
|
+
|
|
2019
|
+
}
|
|
2020
|
+
declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
2021
|
+
export function copyCommandToClipboard(strCommand: string): void;
|
|
2022
|
+
export function getClassNameWithNamespace(obj: any): {
|
|
2023
|
+
className: string;
|
|
2024
|
+
babylonNamespace: string;
|
|
2025
|
+
};
|
|
2026
|
+
|
|
2027
|
+
|
|
2028
|
+
|
|
2016
2029
|
}
|
|
2017
2030
|
declare module BABYLON.NodeGeometryEditor {
|
|
2018
2031
|
|
|
@@ -2085,6 +2098,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2085
2098
|
isConflict: boolean;
|
|
2086
2099
|
}): boolean;
|
|
2087
2100
|
onChange(): void;
|
|
2101
|
+
onCopyClick(): void;
|
|
2088
2102
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2089
2103
|
}
|
|
2090
2104
|
|
|
@@ -2168,9 +2182,9 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2168
2182
|
updateStateG(value: number): void;
|
|
2169
2183
|
updateStateB(value: number): void;
|
|
2170
2184
|
updateStateA(value: number): void;
|
|
2171
|
-
copyToClipboard(): void;
|
|
2172
2185
|
private _convertToColor;
|
|
2173
2186
|
private _toColor3;
|
|
2187
|
+
onCopyClick(): void;
|
|
2174
2188
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2175
2189
|
}
|
|
2176
2190
|
|
|
@@ -2322,6 +2336,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2322
2336
|
unlock(): void;
|
|
2323
2337
|
incrementValue(amount: number, processStep?: boolean): void;
|
|
2324
2338
|
onKeyDown(event: React.KeyboardEvent<HTMLInputElement>): void;
|
|
2339
|
+
onCopyClick(): void;
|
|
2325
2340
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2326
2341
|
}
|
|
2327
2342
|
|
|
@@ -2627,6 +2642,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2627
2642
|
raiseOnPropertyChanged(newValue: number, previousValue: number): void;
|
|
2628
2643
|
setValue(value: string | number): void;
|
|
2629
2644
|
updateValue(valueString: string): void;
|
|
2645
|
+
onCopyClick(): void;
|
|
2630
2646
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2631
2647
|
}
|
|
2632
2648
|
|
|
@@ -2705,6 +2721,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2705
2721
|
onChange(newValueString: any): void;
|
|
2706
2722
|
onInput(newValueString: any): void;
|
|
2707
2723
|
prepareDataToRead(value: number): number;
|
|
2724
|
+
onCopyClick(): void;
|
|
2708
2725
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2709
2726
|
}
|
|
2710
2727
|
|
|
@@ -2919,6 +2936,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2919
2936
|
updateStateX(value: number): void;
|
|
2920
2937
|
updateStateY(value: number): void;
|
|
2921
2938
|
updateStateZ(value: number): void;
|
|
2939
|
+
onCopyClick(): void;
|
|
2922
2940
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2923
2941
|
}
|
|
2924
2942
|
|