babylonjs-gui 5.21.0 → 5.22.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.
@@ -409,6 +409,12 @@ export class AdvancedDynamicTexture extends DynamicTexture {
409
409
  * Unregister the clipboard Events from the canvas
410
410
  */
411
411
  unRegisterClipboardEvents(): void;
412
+ /**
413
+ * Transform uvs from mesh space to texture space, taking the texture into account
414
+ * @param uv the uvs in mesh space
415
+ * @returns the uvs in texture space
416
+ */
417
+ private _transformUvs;
412
418
  /**
413
419
  * Connect the texture to a hosting mesh to enable interactions
414
420
  * @param mesh defines the mesh to attach to
@@ -8405,6 +8411,12 @@ declare module BABYLON.GUI {
8405
8411
  * Unregister the clipboard Events from the canvas
8406
8412
  */
8407
8413
  unRegisterClipboardEvents(): void;
8414
+ /**
8415
+ * Transform uvs from mesh space to texture space, taking the texture into account
8416
+ * @param uv the uvs in mesh space
8417
+ * @returns the uvs in texture space
8418
+ */
8419
+ private _transformUvs;
8408
8420
  /**
8409
8421
  * Connect the texture to a hosting mesh to enable interactions
8410
8422
  * @param mesh defines the mesh to attach to
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "5.21.0",
3
+ "version": "5.22.0",
4
4
  "main": "babylon.gui.js",
5
5
  "types": "babylon.gui.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.*"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^5.21.0"
17
+ "babylonjs": "^5.22.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",