babylonjs-node-editor 7.5.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.
- package/babylon.nodeEditor.d.ts +19 -1
- package/babylon.nodeEditor.js +1 -1
- package/babylon.nodeEditor.js.map +1 -1
- package/babylon.nodeEditor.max.js +223 -50
- package/babylon.nodeEditor.module.d.ts +33 -2
- package/package.json +2 -2
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -2253,6 +2253,19 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2253
2253
|
|
|
2254
2254
|
|
|
2255
2255
|
|
|
2256
|
+
}
|
|
2257
|
+
declare module BABYLON.NodeEditor {
|
|
2258
|
+
|
|
2259
|
+
}
|
|
2260
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2261
|
+
export function copyCommandToClipboard(strCommand: string): void;
|
|
2262
|
+
export function getClassNameWithNamespace(obj: any): {
|
|
2263
|
+
className: string;
|
|
2264
|
+
babylonNamespace: string;
|
|
2265
|
+
};
|
|
2266
|
+
|
|
2267
|
+
|
|
2268
|
+
|
|
2256
2269
|
}
|
|
2257
2270
|
declare module BABYLON.NodeEditor {
|
|
2258
2271
|
|
|
@@ -2325,6 +2338,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2325
2338
|
isConflict: boolean;
|
|
2326
2339
|
}): boolean;
|
|
2327
2340
|
onChange(): void;
|
|
2341
|
+
onCopyClick(): void;
|
|
2328
2342
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2329
2343
|
}
|
|
2330
2344
|
|
|
@@ -2408,9 +2422,9 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2408
2422
|
updateStateG(value: number): void;
|
|
2409
2423
|
updateStateB(value: number): void;
|
|
2410
2424
|
updateStateA(value: number): void;
|
|
2411
|
-
copyToClipboard(): void;
|
|
2412
2425
|
private _convertToColor;
|
|
2413
2426
|
private _toColor3;
|
|
2427
|
+
onCopyClick(): void;
|
|
2414
2428
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2415
2429
|
}
|
|
2416
2430
|
|
|
@@ -2562,6 +2576,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2562
2576
|
unlock(): void;
|
|
2563
2577
|
incrementValue(amount: number, processStep?: boolean): void;
|
|
2564
2578
|
onKeyDown(event: React.KeyboardEvent<HTMLInputElement>): void;
|
|
2579
|
+
onCopyClick(): void;
|
|
2565
2580
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2566
2581
|
}
|
|
2567
2582
|
|
|
@@ -2867,6 +2882,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2867
2882
|
raiseOnPropertyChanged(newValue: number, previousValue: number): void;
|
|
2868
2883
|
setValue(value: string | number): void;
|
|
2869
2884
|
updateValue(valueString: string): void;
|
|
2885
|
+
onCopyClick(): void;
|
|
2870
2886
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2871
2887
|
}
|
|
2872
2888
|
|
|
@@ -2945,6 +2961,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2945
2961
|
onChange(newValueString: any): void;
|
|
2946
2962
|
onInput(newValueString: any): void;
|
|
2947
2963
|
prepareDataToRead(value: number): number;
|
|
2964
|
+
onCopyClick(): void;
|
|
2948
2965
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
2949
2966
|
}
|
|
2950
2967
|
|
|
@@ -3159,6 +3176,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
3159
3176
|
updateStateX(value: number): void;
|
|
3160
3177
|
updateStateY(value: number): void;
|
|
3161
3178
|
updateStateZ(value: number): void;
|
|
3179
|
+
onCopyClick(): void;
|
|
3162
3180
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
3163
3181
|
}
|
|
3164
3182
|
|