@esotericsoftware/spine-core 4.2.24 → 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/Animation.d.ts +7 -7
- package/dist/Animation.js +57 -38
- package/dist/AnimationState.d.ts +6 -6
- package/dist/AnimationState.js +154 -153
- package/dist/AnimationStateData.d.ts +3 -3
- package/dist/AnimationStateData.js +6 -4
- package/dist/AssetManagerBase.d.ts +3 -3
- package/dist/AssetManagerBase.js +11 -11
- package/dist/AtlasAttachmentLoader.d.ts +9 -9
- package/dist/AtlasAttachmentLoader.js +8 -7
- package/dist/Bone.d.ts +4 -4
- package/dist/Bone.js +53 -49
- package/dist/BoneData.d.ts +1 -1
- package/dist/BoneData.js +33 -31
- package/dist/ConstraintData.js +4 -1
- package/dist/Event.d.ts +1 -1
- package/dist/Event.js +8 -7
- package/dist/EventData.js +8 -7
- package/dist/IkConstraint.d.ts +4 -4
- package/dist/IkConstraint.js +21 -15
- package/dist/IkConstraintData.d.ts +2 -2
- package/dist/IkConstraintData.js +20 -20
- package/dist/PathConstraint.d.ts +6 -6
- package/dist/PathConstraint.js +28 -22
- package/dist/PathConstraintData.d.ts +3 -3
- package/dist/PathConstraintData.js +21 -21
- package/dist/Skeleton.d.ts +10 -10
- package/dist/Skeleton.js +41 -25
- package/dist/SkeletonBinary.d.ts +2 -2
- package/dist/SkeletonBinary.js +30 -19
- package/dist/SkeletonBounds.d.ts +3 -3
- package/dist/SkeletonBounds.js +18 -20
- package/dist/SkeletonClipping.d.ts +3 -3
- package/dist/SkeletonClipping.js +11 -13
- package/dist/SkeletonData.d.ts +7 -7
- package/dist/SkeletonData.js +42 -44
- package/dist/SkeletonJson.d.ts +5 -5
- package/dist/SkeletonJson.js +26 -20
- package/dist/Skin.d.ts +5 -5
- package/dist/Skin.js +10 -5
- package/dist/Slot.d.ts +5 -5
- package/dist/Slot.js +23 -16
- package/dist/SlotData.d.ts +2 -2
- package/dist/SlotData.js +18 -14
- package/dist/Texture.js +14 -14
- package/dist/TextureAtlas.d.ts +3 -3
- package/dist/TextureAtlas.js +30 -27
- package/dist/TransformConstraint.d.ts +5 -5
- package/dist/TransformConstraint.js +16 -10
- package/dist/TransformConstraintData.d.ts +2 -2
- package/dist/TransformConstraintData.js +26 -26
- package/dist/Triangulator.d.ts +1 -1
- package/dist/Triangulator.js +13 -15
- package/dist/Utils.d.ts +2 -2
- package/dist/Utils.js +37 -35
- package/dist/attachments/Attachment.d.ts +2 -2
- package/dist/attachments/Attachment.js +20 -19
- package/dist/attachments/AttachmentLoader.d.ts +8 -8
- package/dist/attachments/BoundingBoxAttachment.d.ts +2 -2
- package/dist/attachments/BoundingBoxAttachment.js +4 -4
- package/dist/attachments/ClippingAttachment.d.ts +3 -3
- package/dist/attachments/ClippingAttachment.js +10 -10
- package/dist/attachments/HasTextureRegion.d.ts +3 -3
- package/dist/attachments/MeshAttachment.d.ts +6 -6
- package/dist/attachments/MeshAttachment.js +29 -27
- package/dist/attachments/PathAttachment.d.ts +2 -2
- package/dist/attachments/PathAttachment.js +13 -13
- package/dist/attachments/PointAttachment.d.ts +3 -3
- package/dist/attachments/PointAttachment.js +9 -9
- package/dist/attachments/RegionAttachment.d.ts +6 -6
- package/dist/attachments/RegionAttachment.js +61 -59
- package/dist/attachments/Sequence.d.ts +3 -3
- package/dist/attachments/Sequence.js +9 -8
- package/dist/attachments/index.d.ts +8 -8
- package/dist/attachments/index.js +9 -9
- package/dist/iife/spine-core.js +829 -737
- package/dist/iife/spine-core.js.map +2 -2
- package/dist/iife/spine-core.min.js +2 -2
- package/dist/index.d.ts +39 -39
- package/dist/index.js +40 -40
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
export * from './Animation';
|
|
2
|
-
export * from './AnimationState';
|
|
3
|
-
export * from './AnimationStateData';
|
|
4
|
-
export * from './AtlasAttachmentLoader';
|
|
5
|
-
export * from './Bone';
|
|
6
|
-
export * from './BoneData';
|
|
7
|
-
export * from './ConstraintData';
|
|
8
|
-
export * from './AssetManagerBase';
|
|
9
|
-
export * from './Event';
|
|
10
|
-
export * from './EventData';
|
|
11
|
-
export * from './IkConstraint';
|
|
12
|
-
export * from './IkConstraintData';
|
|
13
|
-
export * from './PathConstraint';
|
|
14
|
-
export * from './PathConstraintData';
|
|
15
|
-
export * from './Skeleton';
|
|
16
|
-
export * from './SkeletonBinary';
|
|
17
|
-
export * from './SkeletonBounds';
|
|
18
|
-
export * from './SkeletonClipping';
|
|
19
|
-
export * from './SkeletonData';
|
|
20
|
-
export * from './SkeletonJson';
|
|
21
|
-
export * from './Skin';
|
|
22
|
-
export * from './Slot';
|
|
23
|
-
export * from './SlotData';
|
|
24
|
-
export * from './Texture';
|
|
25
|
-
export * from './TextureAtlas';
|
|
26
|
-
export * from './TransformConstraint';
|
|
27
|
-
export * from './TransformConstraintData';
|
|
28
|
-
export * from './Triangulator';
|
|
29
|
-
export * from './Updatable';
|
|
30
|
-
export * from './Utils';
|
|
31
|
-
export * from './polyfills';
|
|
32
|
-
export * from './attachments/Attachment';
|
|
33
|
-
export * from './attachments/AttachmentLoader';
|
|
34
|
-
export * from './attachments/BoundingBoxAttachment';
|
|
35
|
-
export * from './attachments/ClippingAttachment';
|
|
36
|
-
export * from './attachments/MeshAttachment';
|
|
37
|
-
export * from './attachments/PathAttachment';
|
|
38
|
-
export * from './attachments/PointAttachment';
|
|
39
|
-
export * from './attachments/RegionAttachment';
|
|
1
|
+
export * from './Animation.js';
|
|
2
|
+
export * from './AnimationState.js';
|
|
3
|
+
export * from './AnimationStateData.js';
|
|
4
|
+
export * from './AtlasAttachmentLoader.js';
|
|
5
|
+
export * from './Bone.js';
|
|
6
|
+
export * from './BoneData.js';
|
|
7
|
+
export * from './ConstraintData.js';
|
|
8
|
+
export * from './AssetManagerBase.js';
|
|
9
|
+
export * from './Event.js';
|
|
10
|
+
export * from './EventData.js';
|
|
11
|
+
export * from './IkConstraint.js';
|
|
12
|
+
export * from './IkConstraintData.js';
|
|
13
|
+
export * from './PathConstraint.js';
|
|
14
|
+
export * from './PathConstraintData.js';
|
|
15
|
+
export * from './Skeleton.js';
|
|
16
|
+
export * from './SkeletonBinary.js';
|
|
17
|
+
export * from './SkeletonBounds.js';
|
|
18
|
+
export * from './SkeletonClipping.js';
|
|
19
|
+
export * from './SkeletonData.js';
|
|
20
|
+
export * from './SkeletonJson.js';
|
|
21
|
+
export * from './Skin.js';
|
|
22
|
+
export * from './Slot.js';
|
|
23
|
+
export * from './SlotData.js';
|
|
24
|
+
export * from './Texture.js';
|
|
25
|
+
export * from './TextureAtlas.js';
|
|
26
|
+
export * from './TransformConstraint.js';
|
|
27
|
+
export * from './TransformConstraintData.js';
|
|
28
|
+
export * from './Triangulator.js';
|
|
29
|
+
export * from './Updatable.js';
|
|
30
|
+
export * from './Utils.js';
|
|
31
|
+
export * from './polyfills.js';
|
|
32
|
+
export * from './attachments/Attachment.js';
|
|
33
|
+
export * from './attachments/AttachmentLoader.js';
|
|
34
|
+
export * from './attachments/BoundingBoxAttachment.js';
|
|
35
|
+
export * from './attachments/ClippingAttachment.js';
|
|
36
|
+
export * from './attachments/MeshAttachment.js';
|
|
37
|
+
export * from './attachments/PathAttachment.js';
|
|
38
|
+
export * from './attachments/PointAttachment.js';
|
|
39
|
+
export * from './attachments/RegionAttachment.js';
|
package/dist/index.js
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
export * from './Animation';
|
|
2
|
-
export * from './AnimationState';
|
|
3
|
-
export * from './AnimationStateData';
|
|
4
|
-
export * from './AtlasAttachmentLoader';
|
|
5
|
-
export * from './Bone';
|
|
6
|
-
export * from './BoneData';
|
|
7
|
-
export * from './ConstraintData';
|
|
8
|
-
export * from './AssetManagerBase';
|
|
9
|
-
export * from './Event';
|
|
10
|
-
export * from './EventData';
|
|
11
|
-
export * from './IkConstraint';
|
|
12
|
-
export * from './IkConstraintData';
|
|
13
|
-
export * from './PathConstraint';
|
|
14
|
-
export * from './PathConstraintData';
|
|
15
|
-
export * from './Skeleton';
|
|
16
|
-
export * from './SkeletonBinary';
|
|
17
|
-
export * from './SkeletonBounds';
|
|
18
|
-
export * from './SkeletonClipping';
|
|
19
|
-
export * from './SkeletonData';
|
|
20
|
-
export * from './SkeletonJson';
|
|
21
|
-
export * from './Skin';
|
|
22
|
-
export * from './Slot';
|
|
23
|
-
export * from './SlotData';
|
|
24
|
-
export * from './Texture';
|
|
25
|
-
export * from './TextureAtlas';
|
|
26
|
-
export * from './TransformConstraint';
|
|
27
|
-
export * from './TransformConstraintData';
|
|
28
|
-
export * from './Triangulator';
|
|
29
|
-
export * from './Updatable';
|
|
30
|
-
export * from './Utils';
|
|
31
|
-
export * from './polyfills';
|
|
32
|
-
export * from './attachments/Attachment';
|
|
33
|
-
export * from './attachments/AttachmentLoader';
|
|
34
|
-
export * from './attachments/BoundingBoxAttachment';
|
|
35
|
-
export * from './attachments/ClippingAttachment';
|
|
36
|
-
export * from './attachments/MeshAttachment';
|
|
37
|
-
export * from './attachments/PathAttachment';
|
|
38
|
-
export * from './attachments/PointAttachment';
|
|
39
|
-
export * from './attachments/RegionAttachment';
|
|
40
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
export * from './Animation.js';
|
|
2
|
+
export * from './AnimationState.js';
|
|
3
|
+
export * from './AnimationStateData.js';
|
|
4
|
+
export * from './AtlasAttachmentLoader.js';
|
|
5
|
+
export * from './Bone.js';
|
|
6
|
+
export * from './BoneData.js';
|
|
7
|
+
export * from './ConstraintData.js';
|
|
8
|
+
export * from './AssetManagerBase.js';
|
|
9
|
+
export * from './Event.js';
|
|
10
|
+
export * from './EventData.js';
|
|
11
|
+
export * from './IkConstraint.js';
|
|
12
|
+
export * from './IkConstraintData.js';
|
|
13
|
+
export * from './PathConstraint.js';
|
|
14
|
+
export * from './PathConstraintData.js';
|
|
15
|
+
export * from './Skeleton.js';
|
|
16
|
+
export * from './SkeletonBinary.js';
|
|
17
|
+
export * from './SkeletonBounds.js';
|
|
18
|
+
export * from './SkeletonClipping.js';
|
|
19
|
+
export * from './SkeletonData.js';
|
|
20
|
+
export * from './SkeletonJson.js';
|
|
21
|
+
export * from './Skin.js';
|
|
22
|
+
export * from './Slot.js';
|
|
23
|
+
export * from './SlotData.js';
|
|
24
|
+
export * from './Texture.js';
|
|
25
|
+
export * from './TextureAtlas.js';
|
|
26
|
+
export * from './TransformConstraint.js';
|
|
27
|
+
export * from './TransformConstraintData.js';
|
|
28
|
+
export * from './Triangulator.js';
|
|
29
|
+
export * from './Updatable.js';
|
|
30
|
+
export * from './Utils.js';
|
|
31
|
+
export * from './polyfills.js';
|
|
32
|
+
export * from './attachments/Attachment.js';
|
|
33
|
+
export * from './attachments/AttachmentLoader.js';
|
|
34
|
+
export * from './attachments/BoundingBoxAttachment.js';
|
|
35
|
+
export * from './attachments/ClippingAttachment.js';
|
|
36
|
+
export * from './attachments/MeshAttachment.js';
|
|
37
|
+
export * from './attachments/PathAttachment.js';
|
|
38
|
+
export * from './attachments/PointAttachment.js';
|
|
39
|
+
export * from './attachments/RegionAttachment.js';
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyx3Q0FBd0MsQ0FBQztBQUN2RCxjQUFjLHFDQUFxQyxDQUFDO0FBQ3BELGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsbUNBQW1DLENBQUMifQ==
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esotericsoftware/spine-core",
|
|
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",
|
|
@@ -29,4 +30,4 @@
|
|
|
29
30
|
"url": "https://github.com/esotericsoftware/spine-runtimes/issues"
|
|
30
31
|
},
|
|
31
32
|
"homepage": "https://github.com/esotericsoftware/spine-runtimes#readme"
|
|
32
|
-
}
|
|
33
|
+
}
|