babylonjs-gui-editor 5.38.0 → 5.40.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.
@@ -794,10 +794,8 @@ declare module BABYLON {
794
794
  private _panning;
795
795
  private _isOverGUINode;
796
796
  private _engine;
797
- private _liveRenderObserver;
798
797
  private _guiRenderObserver;
799
798
  private _doubleClick;
800
- _liveGuiTextureRerender: boolean;
801
799
  private _currLeft;
802
800
  private _currTop;
803
801
  private _controlsHit;
@@ -812,8 +810,6 @@ declare module BABYLON {
812
810
  private _trueRootContainer;
813
811
  set trueRootContainer(value: BABYLON.GUI.Container);
814
812
  get trueRootContainer(): BABYLON.GUI.Container;
815
- private _nextLiveGuiRender;
816
- private _liveGuiRerenderDelay;
817
813
  private _defaultGUISize;
818
814
  private _initialPanningOffset;
819
815
  private _panningOffset;
@@ -851,6 +847,8 @@ declare module BABYLON {
851
847
  updateNodeOutlines(): void;
852
848
  appendBlock(guiElement: BABYLON.GUI.Control): BABYLON.GUI.Control;
853
849
  private parent;
850
+ private _canClone;
851
+ private _copyEditorGUIToLiveGUI;
854
852
  private _reorderGrid;
855
853
  private _isNotChildInsert;
856
854
  private _adjustParentingIndex;
@@ -865,6 +863,7 @@ declare module BABYLON {
865
863
  processSelection(): void;
866
864
  onDown(evt: React.PointerEvent<HTMLElement>): void;
867
865
  onUp(evt: React.PointerEvent): void;
866
+ private _copyLiveGUIToEditorGUI;
868
867
  createGUICanvas(embed?: boolean): void;
869
868
  synchronizeLiveGUI(): void;
870
869
  addControls(scene: Scene): void;
@@ -956,6 +955,7 @@ declare module BABYLON {
956
955
  isSaving: boolean;
957
956
  lockObject: BABYLON.GuiEditor.SharedUIComponents.LockObject;
958
957
  storeEditorData: (serializationObject: any) => void;
958
+ shiftKeyPressed: boolean;
959
959
  customSave?: {
960
960
  label: string;
961
961
  action: (data: string) => Promise<string>;