babylonjs-gui 7.53.0 → 7.53.1
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.d.ts +5 -5
- package/babylon.gui.js +10 -10
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +10 -10
- package/package.json +2 -2
package/babylon.gui.d.ts
CHANGED
@@ -8250,9 +8250,9 @@ declare module BABYLON.GUI {
|
|
8250
8250
|
*/
|
8251
8251
|
getClassName(): string;
|
8252
8252
|
/**
|
8253
|
-
* Gets the
|
8253
|
+
* Gets the target input component
|
8254
8254
|
*/
|
8255
|
-
get
|
8255
|
+
get target(): BABYLON.NodeRenderGraphConnectionPoint;
|
8256
8256
|
/**
|
8257
8257
|
* Gets the output component
|
8258
8258
|
*/
|
@@ -8266,12 +8266,12 @@ declare module BABYLON.GUI {
|
|
8266
8266
|
*/
|
8267
8267
|
export class FrameGraphGUITask extends BABYLON.FrameGraphTask {
|
8268
8268
|
/**
|
8269
|
-
* The
|
8269
|
+
* The target texture to render the GUI to.
|
8270
8270
|
*/
|
8271
|
-
|
8271
|
+
targetTexture: BABYLON.FrameGraphTextureHandle;
|
8272
8272
|
/**
|
8273
8273
|
* The output texture of the task.
|
8274
|
-
* This is the same texture as the
|
8274
|
+
* This is the same texture as the target texture, but the handles are different!
|
8275
8275
|
*/
|
8276
8276
|
readonly outputTexture: BABYLON.FrameGraphTextureHandle;
|
8277
8277
|
get disabled(): boolean;
|