babylonjs-gui-editor 7.53.2 → 7.53.3
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
|
@@ -2066,11 +2066,11 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2066
2066
|
private _onUpdateRequiredObserver;
|
|
2067
2067
|
private _onHighlightNodeObserver;
|
|
2068
2068
|
private _ownerCanvas;
|
|
2069
|
-
private _isSelected;
|
|
2070
2069
|
private _displayManager;
|
|
2071
2070
|
private _isVisible;
|
|
2072
2071
|
private _enclosingFrameId;
|
|
2073
2072
|
private _visualPropertiesRefresh;
|
|
2073
|
+
private _lastClick;
|
|
2074
2074
|
addClassToVisual(className: string): void;
|
|
2075
2075
|
removeClassFromVisual(className: string): void;
|
|
2076
2076
|
get isCollapsed(): boolean;
|
|
@@ -2090,10 +2090,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2090
2090
|
get height(): number;
|
|
2091
2091
|
get id(): number;
|
|
2092
2092
|
get name(): string;
|
|
2093
|
-
get isSelected(): boolean;
|
|
2094
2093
|
get enclosingFrameId(): number;
|
|
2095
2094
|
set enclosingFrameId(value: number);
|
|
2096
|
-
set isSelected(value: boolean);
|
|
2097
2095
|
setIsSelected(value: boolean, marqueeSelection: boolean): void;
|
|
2098
2096
|
get rootElement(): HTMLDivElement;
|
|
2099
2097
|
constructor(content: BABYLON.GuiEditor.SharedUIComponents.INodeData, stateManager: BABYLON.GuiEditor.SharedUIComponents.StateManager);
|
|
@@ -2105,10 +2103,11 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2105
2103
|
private _refreshFrames;
|
|
2106
2104
|
_refreshLinks(): void;
|
|
2107
2105
|
refresh(): void;
|
|
2106
|
+
private _expand;
|
|
2107
|
+
private _searchMiddle;
|
|
2108
2108
|
private _onDown;
|
|
2109
2109
|
cleanAccumulation(useCeil?: boolean): void;
|
|
2110
2110
|
private _onUp;
|
|
2111
|
-
private _attach;
|
|
2112
2111
|
private _onMove;
|
|
2113
2112
|
renderProperties(): Nullable<JSX.Element>;
|
|
2114
2113
|
_forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
|
|
@@ -2326,6 +2325,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2326
2325
|
private _candidateLinkedHasMoved;
|
|
2327
2326
|
private _x;
|
|
2328
2327
|
private _y;
|
|
2328
|
+
private _lastx;
|
|
2329
|
+
private _lasty;
|
|
2329
2330
|
private _zoom;
|
|
2330
2331
|
private _selectedNodes;
|
|
2331
2332
|
private _selectedLink;
|
|
@@ -2339,6 +2340,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2339
2340
|
private _frames;
|
|
2340
2341
|
private _nodeDataContentList;
|
|
2341
2342
|
private _altKeyIsPressed;
|
|
2343
|
+
private _shiftKeyIsPressed;
|
|
2342
2344
|
private _multiKeyIsPressed;
|
|
2343
2345
|
private _oldY;
|
|
2344
2346
|
_frameIsMoving: boolean;
|