babylonjs-gui 7.52.3 → 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.
@@ -8974,9 +8974,9 @@ export class NodeRenderGraphGUIBlock extends NodeRenderGraphBlock {
8974
8974
  */
8975
8975
  getClassName(): string;
8976
8976
  /**
8977
- * Gets the destination input component
8977
+ * Gets the target input component
8978
8978
  */
8979
- get destination(): NodeRenderGraphConnectionPoint;
8979
+ get target(): NodeRenderGraphConnectionPoint;
8980
8980
  /**
8981
8981
  * Gets the output component
8982
8982
  */
@@ -8994,12 +8994,12 @@ import { FrameGraphTask } from "babylonjs/FrameGraph/frameGraphTask";
8994
8994
  */
8995
8995
  export class FrameGraphGUITask extends FrameGraphTask {
8996
8996
  /**
8997
- * The destination texture to render the GUI to.
8997
+ * The target texture to render the GUI to.
8998
8998
  */
8999
- destinationTexture: FrameGraphTextureHandle;
8999
+ targetTexture: FrameGraphTextureHandle;
9000
9000
  /**
9001
9001
  * The output texture of the task.
9002
- * This is the same texture as the destination texture, but the handles are different!
9002
+ * This is the same texture as the target texture, but the handles are different!
9003
9003
  */
9004
9004
  readonly outputTexture: FrameGraphTextureHandle;
9005
9005
  get disabled(): boolean;
@@ -17283,9 +17283,9 @@ declare module BABYLON.GUI {
17283
17283
  */
17284
17284
  getClassName(): string;
17285
17285
  /**
17286
- * Gets the destination input component
17286
+ * Gets the target input component
17287
17287
  */
17288
- get destination(): BABYLON.NodeRenderGraphConnectionPoint;
17288
+ get target(): BABYLON.NodeRenderGraphConnectionPoint;
17289
17289
  /**
17290
17290
  * Gets the output component
17291
17291
  */
@@ -17299,12 +17299,12 @@ declare module BABYLON.GUI {
17299
17299
  */
17300
17300
  export class FrameGraphGUITask extends BABYLON.FrameGraphTask {
17301
17301
  /**
17302
- * The destination texture to render the GUI to.
17302
+ * The target texture to render the GUI to.
17303
17303
  */
17304
- destinationTexture: BABYLON.FrameGraphTextureHandle;
17304
+ targetTexture: BABYLON.FrameGraphTextureHandle;
17305
17305
  /**
17306
17306
  * The output texture of the task.
17307
- * This is the same texture as the destination texture, but the handles are different!
17307
+ * This is the same texture as the target texture, but the handles are different!
17308
17308
  */
17309
17309
  readonly outputTexture: BABYLON.FrameGraphTextureHandle;
17310
17310
  get disabled(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "7.52.3",
3
+ "version": "7.53.1",
4
4
  "main": "babylon.gui.js",
5
5
  "types": "babylon.gui.module.d.ts",
6
6
  "files": [
@@ -15,7 +15,7 @@
15
15
  "test:escheck": "es-check es6 ./babylon.gui.js"
16
16
  },
17
17
  "dependencies": {
18
- "babylonjs": "^7.52.3"
18
+ "babylonjs": "^7.53.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@dev/build-tools": "1.0.0",