babylonjs-gui-editor 5.17.1 → 5.18.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.guiEditor.d.ts
CHANGED
|
@@ -18,6 +18,8 @@ declare module BABYLON {
|
|
|
18
18
|
icon: string;
|
|
19
19
|
iconLabel?: string;
|
|
20
20
|
isActive: boolean;
|
|
21
|
+
copyDeleteDisabled?: boolean;
|
|
22
|
+
pasteDisabled?: boolean;
|
|
21
23
|
onClick: () => void;
|
|
22
24
|
altStyle?: boolean;
|
|
23
25
|
disabled?: boolean;
|
|
@@ -759,7 +761,9 @@ declare module BABYLON {
|
|
|
759
761
|
private _zoomFactor;
|
|
760
762
|
private _zoomModeIncrement;
|
|
761
763
|
private _guiSize;
|
|
764
|
+
private _pasteDisabled;
|
|
762
765
|
get guiSize(): ISize;
|
|
766
|
+
get pasteDisabled(): boolean;
|
|
763
767
|
set guiSize(value: ISize);
|
|
764
768
|
applyEditorTransformation(): void;
|
|
765
769
|
removeEditorTransformation(): void;
|