babylonjs-gui 5.0.0-alpha.61 → 5.0.0-alpha.62
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.gui.js +96 -90
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.module.d.ts +8 -0
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -372,6 +372,8 @@ declare module "babylonjs-gui/2D/advancedDynamicTexture" {
|
|
|
372
372
|
export class AdvancedDynamicTexture extends DynamicTexture {
|
|
373
373
|
/** Define the Uurl to load snippets */
|
|
374
374
|
static SnippetUrl: string;
|
|
375
|
+
/** Indicates if some optimizations can be performed in GUI GPU management (the downside is additional memory/GPU texture memory used) */
|
|
376
|
+
static AllowGPUOptimizations: boolean;
|
|
375
377
|
/** Snippet ID if the content was created from the snippet server */
|
|
376
378
|
snippetId: string;
|
|
377
379
|
private _isDirty;
|
|
@@ -851,6 +853,8 @@ declare module "babylonjs-gui/2D/controls/control" {
|
|
|
851
853
|
private _enterCount;
|
|
852
854
|
private _doNotRender;
|
|
853
855
|
private _downPointerIds;
|
|
856
|
+
private _evaluatedMeasure;
|
|
857
|
+
private _evaluatedParentMeasure;
|
|
854
858
|
protected _isEnabled: boolean;
|
|
855
859
|
protected _disabledColor: string;
|
|
856
860
|
protected _disabledColorItem: string;
|
|
@@ -7431,6 +7435,8 @@ declare module BABYLON.GUI {
|
|
|
7431
7435
|
export class AdvancedDynamicTexture extends BABYLON.DynamicTexture {
|
|
7432
7436
|
/** Define the Uurl to load snippets */
|
|
7433
7437
|
static SnippetUrl: string;
|
|
7438
|
+
/** Indicates if some optimizations can be performed in GUI GPU management (the downside is additional memory/GPU texture memory used) */
|
|
7439
|
+
static AllowGPUOptimizations: boolean;
|
|
7434
7440
|
/** Snippet ID if the content was created from the snippet server */
|
|
7435
7441
|
snippetId: string;
|
|
7436
7442
|
private _isDirty;
|
|
@@ -7897,6 +7903,8 @@ declare module BABYLON.GUI {
|
|
|
7897
7903
|
private _enterCount;
|
|
7898
7904
|
private _doNotRender;
|
|
7899
7905
|
private _downPointerIds;
|
|
7906
|
+
private _evaluatedMeasure;
|
|
7907
|
+
private _evaluatedParentMeasure;
|
|
7900
7908
|
protected _isEnabled: boolean;
|
|
7901
7909
|
protected _disabledColor: string;
|
|
7902
7910
|
protected _disabledColorItem: string;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
},
|
|
5
5
|
"name": "babylonjs-gui",
|
|
6
6
|
"description": "The Babylon.js GUI library is an extension you can use to generate interactive user interface. It is build on top of the DynamicTexture.",
|
|
7
|
-
"version": "5.0.0-alpha.
|
|
7
|
+
"version": "5.0.0-alpha.62",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/BabylonJS/Babylon.js.git"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"babylonjs": "5.0.0-alpha.
|
|
31
|
+
"babylonjs": "5.0.0-alpha.62"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": "*"
|