@babylonjs/addons 8.2.0 → 8.2.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/htmlMesh/htmlMesh.d.ts +1 -1
- package/htmlMesh/htmlMeshRenderer.d.ts +1 -1
- package/htmlMesh/index.d.ts +4 -4
- package/index.d.ts +1 -1
- package/package.json +2 -2
package/htmlMesh/htmlMesh.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Mesh } from "@babylonjs/core/Meshes/mesh.js";
|
|
2
2
|
import type { Scene } from "@babylonjs/core/scene.js";
|
|
3
|
-
import type { FitStrategyType } from "./fitStrategy";
|
|
3
|
+
import type { FitStrategyType } from "./fitStrategy.js";
|
|
4
4
|
/**
|
|
5
5
|
* This class represents HTML content that we want to render as though it is part of the scene. The HTML content is actually
|
|
6
6
|
* rendered below the canvas, but a depth mask is created by this class that writes to the depth buffer but does not
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Scene } from "@babylonjs/core/scene.js";
|
|
2
2
|
import { Matrix } from "@babylonjs/core/Maths/math.js";
|
|
3
|
-
import type { HtmlMesh } from "./htmlMesh";
|
|
3
|
+
import type { HtmlMesh } from "./htmlMesh.js";
|
|
4
4
|
import { Camera } from "@babylonjs/core/Cameras/camera.js";
|
|
5
5
|
import type { SubMesh } from "@babylonjs/core/Meshes/subMesh.js";
|
|
6
6
|
/**
|
package/htmlMesh/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { HtmlMeshRenderer } from "./htmlMeshRenderer";
|
|
2
|
-
import { HtmlMesh } from "./htmlMesh";
|
|
3
|
-
import { PointerEventsCaptureBehavior } from "./pointerEventsCaptureBehavior";
|
|
4
|
-
import { FitStrategy } from "./fitStrategy";
|
|
1
|
+
import { HtmlMeshRenderer } from "./htmlMeshRenderer.js";
|
|
2
|
+
import { HtmlMesh } from "./htmlMesh.js";
|
|
3
|
+
import { PointerEventsCaptureBehavior } from "./pointerEventsCaptureBehavior.js";
|
|
4
|
+
import { FitStrategy } from "./fitStrategy.js";
|
|
5
5
|
export { HtmlMeshRenderer, HtmlMesh, PointerEventsCaptureBehavior, FitStrategy };
|
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./htmlMesh";
|
|
1
|
+
export * from "./htmlMesh.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/addons",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"module": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"postcompile": "build-tools -c add-js-to-es6"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@babylonjs/core": "^8.2.
|
|
21
|
+
"@babylonjs/core": "^8.2.1",
|
|
22
22
|
"@dev/addons": "^1.0.0",
|
|
23
23
|
"@dev/build-tools": "^1.0.0"
|
|
24
24
|
},
|