@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.
@@ -1062,10 +1062,8 @@ export class WorkbenchComponent extends React.Component<IWorkbenchComponentProps
|
|
1062
1062
|
private _panning;
|
1063
1063
|
private _isOverGUINode;
|
1064
1064
|
private _engine;
|
1065
|
-
private _liveRenderObserver;
|
1066
1065
|
private _guiRenderObserver;
|
1067
1066
|
private _doubleClick;
|
1068
|
-
_liveGuiTextureRerender: boolean;
|
1069
1067
|
private _currLeft;
|
1070
1068
|
private _currTop;
|
1071
1069
|
private _controlsHit;
|
@@ -1080,8 +1078,6 @@ export class WorkbenchComponent extends React.Component<IWorkbenchComponentProps
|
|
1080
1078
|
private _trueRootContainer;
|
1081
1079
|
set trueRootContainer(value: Container);
|
1082
1080
|
get trueRootContainer(): Container;
|
1083
|
-
private _nextLiveGuiRender;
|
1084
|
-
private _liveGuiRerenderDelay;
|
1085
1081
|
private _defaultGUISize;
|
1086
1082
|
private _initialPanningOffset;
|
1087
1083
|
private _panningOffset;
|
@@ -1119,6 +1115,8 @@ export class WorkbenchComponent extends React.Component<IWorkbenchComponentProps
|
|
1119
1115
|
updateNodeOutlines(): void;
|
1120
1116
|
appendBlock(guiElement: Control): Control;
|
1121
1117
|
private parent;
|
1118
|
+
private _canClone;
|
1119
|
+
private _copyEditorGUIToLiveGUI;
|
1122
1120
|
private _reorderGrid;
|
1123
1121
|
private _isNotChildInsert;
|
1124
1122
|
private _adjustParentingIndex;
|
@@ -1133,6 +1131,7 @@ export class WorkbenchComponent extends React.Component<IWorkbenchComponentProps
|
|
1133
1131
|
processSelection(): void;
|
1134
1132
|
onDown(evt: React.PointerEvent<HTMLElement>): void;
|
1135
1133
|
onUp(evt: React.PointerEvent): void;
|
1134
|
+
private _copyLiveGUIToEditorGUI;
|
1136
1135
|
createGUICanvas(embed?: boolean): void;
|
1137
1136
|
synchronizeLiveGUI(): void;
|
1138
1137
|
addControls(scene: Scene): void;
|
@@ -1237,6 +1236,7 @@ export class GlobalState {
|
|
1237
1236
|
isSaving: boolean;
|
1238
1237
|
lockObject: LockObject;
|
1239
1238
|
storeEditorData: (serializationObject: any) => void;
|
1239
|
+
shiftKeyPressed: boolean;
|
1240
1240
|
customSave?: {
|
1241
1241
|
label: string;
|
1242
1242
|
action: (data: string) => Promise<string>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.40.0",
|
4
4
|
"main": "dist/babylon.guiEditor.max.js",
|
5
5
|
"module": "dist/babylon.guiEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.guiEditor.max.js",
|
@@ -24,8 +24,8 @@
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@babylonjs/core": "^5.
|
28
|
-
"@babylonjs/gui": "^5.
|
27
|
+
"@babylonjs/core": "^5.40.0",
|
28
|
+
"@babylonjs/gui": "^5.40.0",
|
29
29
|
"react": "^17.0.2",
|
30
30
|
"react-dom": "^17.0.2",
|
31
31
|
"rimraf": "^3.0.2",
|