@esotericsoftware/spine-webgl 4.2.25 → 4.2.26
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/dist/AssetManager.d.ts +1 -1
- package/dist/AssetManager.js +2 -2
- package/dist/Camera.d.ts +2 -2
- package/dist/Camera.js +15 -15
- package/dist/CameraController.d.ts +1 -1
- package/dist/CameraController.js +5 -3
- package/dist/GLTexture.d.ts +1 -1
- package/dist/GLTexture.js +7 -6
- package/dist/Input.js +13 -9
- package/dist/LoadingScreen.d.ts +1 -1
- package/dist/LoadingScreen.js +14 -14
- package/dist/Matrix4.d.ts +1 -1
- package/dist/Matrix4.js +8 -8
- package/dist/Mesh.d.ts +2 -2
- package/dist/Mesh.js +17 -10
- package/dist/PolygonBatcher.d.ts +3 -3
- package/dist/PolygonBatcher.js +23 -18
- package/dist/SceneRenderer.d.ts +6 -6
- package/dist/SceneRenderer.js +19 -10
- package/dist/Shader.d.ts +1 -1
- package/dist/Shader.js +19 -14
- package/dist/ShapeRenderer.d.ts +2 -2
- package/dist/ShapeRenderer.js +14 -9
- package/dist/SkeletonDebugRenderer.d.ts +2 -2
- package/dist/SkeletonDebugRenderer.js +26 -25
- package/dist/SkeletonRenderer.d.ts +2 -2
- package/dist/SkeletonRenderer.js +17 -13
- package/dist/SpineCanvas.d.ts +1 -1
- package/dist/SpineCanvas.js +17 -5
- package/dist/Vector3.d.ts +1 -1
- package/dist/Vector3.js +5 -5
- package/dist/WebGL.js +4 -2
- package/dist/iife/spine-webgl.js +992 -858
- package/dist/iife/spine-webgl.js.map +2 -2
- package/dist/iife/spine-webgl.min.js +26 -26
- package/dist/index.d.ts +17 -17
- package/dist/index.js +18 -18
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export * from "./AssetManager";
|
|
2
|
-
export * from "./Camera";
|
|
3
|
-
export * from "./CameraController";
|
|
4
|
-
export * from "./GLTexture";
|
|
5
|
-
export * from "./Input";
|
|
6
|
-
export * from "./LoadingScreen";
|
|
7
|
-
export * from "./Matrix4";
|
|
8
|
-
export * from "./Mesh";
|
|
9
|
-
export * from "./PolygonBatcher";
|
|
10
|
-
export * from "./SceneRenderer";
|
|
11
|
-
export * from "./Shader";
|
|
12
|
-
export * from "./ShapeRenderer";
|
|
13
|
-
export * from "./SkeletonDebugRenderer";
|
|
14
|
-
export * from "./SkeletonRenderer";
|
|
15
|
-
export * from "./SpineCanvas";
|
|
16
|
-
export * from "./Vector3";
|
|
17
|
-
export * from "./WebGL";
|
|
1
|
+
export * from "./AssetManager.js";
|
|
2
|
+
export * from "./Camera.js";
|
|
3
|
+
export * from "./CameraController.js";
|
|
4
|
+
export * from "./GLTexture.js";
|
|
5
|
+
export * from "./Input.js";
|
|
6
|
+
export * from "./LoadingScreen.js";
|
|
7
|
+
export * from "./Matrix4.js";
|
|
8
|
+
export * from "./Mesh.js";
|
|
9
|
+
export * from "./PolygonBatcher.js";
|
|
10
|
+
export * from "./SceneRenderer.js";
|
|
11
|
+
export * from "./Shader.js";
|
|
12
|
+
export * from "./ShapeRenderer.js";
|
|
13
|
+
export * from "./SkeletonDebugRenderer.js";
|
|
14
|
+
export * from "./SkeletonRenderer.js";
|
|
15
|
+
export * from "./SpineCanvas.js";
|
|
16
|
+
export * from "./Vector3.js";
|
|
17
|
+
export * from "./WebGL.js";
|
|
18
18
|
export * from "@esotericsoftware/spine-core";
|
package/dist/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from "./AssetManager";
|
|
2
|
-
export * from "./Camera";
|
|
3
|
-
export * from "./CameraController";
|
|
4
|
-
export * from "./GLTexture";
|
|
5
|
-
export * from "./Input";
|
|
6
|
-
export * from "./LoadingScreen";
|
|
7
|
-
export * from "./Matrix4";
|
|
8
|
-
export * from "./Mesh";
|
|
9
|
-
export * from "./PolygonBatcher";
|
|
10
|
-
export * from "./SceneRenderer";
|
|
11
|
-
export * from "./Shader";
|
|
12
|
-
export * from "./ShapeRenderer";
|
|
13
|
-
export * from "./SkeletonDebugRenderer";
|
|
14
|
-
export * from "./SkeletonRenderer";
|
|
15
|
-
export * from "./SpineCanvas";
|
|
16
|
-
export * from "./Vector3";
|
|
17
|
-
export * from "./WebGL";
|
|
1
|
+
export * from "./AssetManager.js";
|
|
2
|
+
export * from "./Camera.js";
|
|
3
|
+
export * from "./CameraController.js";
|
|
4
|
+
export * from "./GLTexture.js";
|
|
5
|
+
export * from "./Input.js";
|
|
6
|
+
export * from "./LoadingScreen.js";
|
|
7
|
+
export * from "./Matrix4.js";
|
|
8
|
+
export * from "./Mesh.js";
|
|
9
|
+
export * from "./PolygonBatcher.js";
|
|
10
|
+
export * from "./SceneRenderer.js";
|
|
11
|
+
export * from "./Shader.js";
|
|
12
|
+
export * from "./ShapeRenderer.js";
|
|
13
|
+
export * from "./SkeletonDebugRenderer.js";
|
|
14
|
+
export * from "./SkeletonRenderer.js";
|
|
15
|
+
export * from "./SpineCanvas.js";
|
|
16
|
+
export * from "./Vector3.js";
|
|
17
|
+
export * from "./WebGL.js";
|
|
18
18
|
export * from "@esotericsoftware/spine-core";
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLDhCQUE4QixDQUFDIn0=
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esotericsoftware/spine-webgl",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.26",
|
|
4
4
|
"description": "The official Spine Runtimes for the web.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
7
8
|
"files": [
|
|
8
9
|
"dist/**/*",
|
|
9
10
|
"README.md",
|
|
@@ -30,6 +31,6 @@
|
|
|
30
31
|
},
|
|
31
32
|
"homepage": "https://github.com/esotericsoftware/spine-runtimes#readme",
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@esotericsoftware/spine-core": "4.2.
|
|
34
|
+
"@esotericsoftware/spine-core": "4.2.26"
|
|
34
35
|
}
|
|
35
36
|
}
|