@galacean/engine-spine 0.0.0-experimental-2024071901 → 0.0.0-experimental-engine-spine-20240821
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/README.md +6 -8
- package/dist/browser.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +1 -1
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/package.json +8 -62
- package/types/{src/SpineAnimationRenderer.d.ts → SpineAnimationRenderer.d.ts} +1 -1
- package/types/SpineGenerator.d.ts +7 -6
- package/types/index.d.ts +2 -2
- package/types/loader/EditorSpineAtlasLoader.d.ts +1 -1
- package/types/loader/LoaderUtils.d.ts +1 -1
- package/types/loader/SkeletonDataResource.d.ts +1 -1
- package/types/loader/SpineLoader.d.ts +1 -1
- package/types/spine-core/Animation.d.ts +378 -0
- package/types/spine-core/AnimationState.d.ts +365 -0
- package/types/spine-core/AnimationStateData.d.ts +23 -0
- package/types/spine-core/AssetManager.d.ts +36 -0
- package/types/spine-core/AtlasAttachmentLoader.d.ts +23 -0
- package/types/spine-core/BlendMode.d.ts +7 -0
- package/types/spine-core/Bone.d.ts +110 -0
- package/types/spine-core/BoneData.d.ts +44 -0
- package/types/spine-core/ConstraintData.d.ts +7 -0
- package/types/spine-core/Event.d.ts +16 -0
- package/types/spine-core/EventData.d.ts +13 -0
- package/types/spine-core/IkConstraint.d.ts +38 -0
- package/types/spine-core/IkConstraintData.d.ts +26 -0
- package/types/spine-core/PathConstraint.d.ts +46 -0
- package/types/spine-core/PathConstraintData.d.ts +52 -0
- package/types/spine-core/SharedAssetManager.d.ts +19 -0
- package/types/spine-core/Skeleton.d.ts +134 -0
- package/types/spine-core/SkeletonBinary.d.ts +49 -0
- package/types/spine-core/SkeletonBounds.d.ts +48 -0
- package/types/spine-core/SkeletonClipping.d.ts +22 -0
- package/types/spine-core/SkeletonData.d.ts +89 -0
- package/types/spine-core/SkeletonJson.d.ts +34 -0
- package/types/spine-core/Skin.d.ts +43 -0
- package/types/spine-core/Slot.d.ts +42 -0
- package/types/spine-core/SlotData.d.ts +23 -0
- package/types/spine-core/Texture.d.ts +43 -0
- package/types/spine-core/TextureAtlas.d.ts +30 -0
- package/types/spine-core/TransformConstraint.d.ts +36 -0
- package/types/spine-core/TransformConstraintData.d.ts +34 -0
- package/types/spine-core/Triangulator.d.ts +14 -0
- package/types/spine-core/Updatable.d.ts +9 -0
- package/types/spine-core/Utils.d.ts +124 -0
- package/types/spine-core/VertexEffect.d.ts +7 -0
- package/types/spine-core/attachments/Attachment.d.ts +43 -0
- package/types/spine-core/attachments/AttachmentLoader.d.ts +25 -0
- package/types/spine-core/attachments/AttachmentType.d.ts +9 -0
- package/types/spine-core/attachments/BoundingBoxAttachment.d.ts +12 -0
- package/types/spine-core/attachments/ClippingAttachment.d.ts +14 -0
- package/types/spine-core/attachments/MeshAttachment.d.ts +46 -0
- package/types/spine-core/attachments/PathAttachment.d.ts +19 -0
- package/types/spine-core/attachments/PointAttachment.d.ts +20 -0
- package/types/spine-core/attachments/RegionAttachment.d.ts +88 -0
- package/types/spine-core/index.d.ts +45 -0
- package/types/spine-core/vertexeffects/JitterEffect.d.ts +11 -0
- package/types/spine-core/vertexeffects/SwirlEffect.d.ts +16 -0
- package/types/util/BlendMode.d.ts +1 -1
- package/types/SpineAnimation.d.ts +0 -147
- package/types/core/MeshGenerator.d.ts +0 -43
- package/types/core/SpineGenerator.d.ts +0 -42
- package/types/core/SpineMesh.d.ts +0 -11
- package/types/core/SpinePrimitive.d.ts +0 -15
- package/types/cypress.config.d.ts +0 -2
- package/types/e2e/case/.mockForE2E.d.ts +0 -3
- package/types/e2e/case/raptor.d.ts +0 -1
- package/types/e2e/case/spine-boy.d.ts +0 -1
- package/types/e2e/config.d.ts +0 -19
- package/types/e2e/support/commands.d.ts +0 -8
- package/types/e2e/support/e2e.d.ts +0 -1
- package/types/e2e/tests/index.cy.d.ts +0 -1
- package/types/example/main.d.ts +0 -1
- package/types/example/outline.d.ts +0 -11
- package/types/jest.setup.d.ts +0 -5
- package/types/loader/BufferReader.d.ts +0 -9
- package/types/loader/EditorSkeletonDataLoader.d.ts +0 -6
- package/types/src/SpineGenerator.d.ts +0 -37
- package/types/src/SpineMaterial.d.ts +0 -6
- package/types/src/index.d.ts +0 -7
- package/types/src/loader/EditorSpineAtlasLoader.d.ts +0 -6
- package/types/src/loader/LoaderUtils.d.ts +0 -18
- package/types/src/loader/SkeletonDataResource.d.ts +0 -12
- package/types/src/loader/SpineLoader.d.ts +0 -29
- package/types/src/util/BlendMode.d.ts +0 -4
- package/types/src/util/BufferReader.d.ts +0 -10
- package/types/src/util/ClearablePool.d.ts +0 -8
- package/types/src/util/ReturnablePool.d.ts +0 -8
- package/types/tests/SpineAnimation.test.d.ts +0 -1
- package/types/tests/SpineGenerator.test.d.ts +0 -1
- package/types/tests/SpineMaterial.test.d.ts +0 -1
- package/types/tests/loader/EditorSpineAtlasLoader.test.d.ts +0 -1
- package/types/tests/loader/SkeletonDataResource.test.d.ts +0 -1
- package/types/tests/loader/SpineLoader.test.d.ts +0 -1
- package/types/tests/loader/loaderUtil.test.d.ts +0 -0
- package/types/tests/testUtils.d.ts +0 -3
- package/types/tests/util/BlendMode.test.d.ts +0 -1
- package/types/tests/util/BufferReader.test.d.ts +0 -1
- package/types/tests/util/ClearablePool.test.d.ts +0 -1
- package/types/tests/util/ReturnablePool.test.d.ts +0 -1
- package/types/types.d.ts +0 -4
- package/types/util/Cache.d.ts +0 -19
- /package/types/{e2e/case/mix-and-match.d.ts → spine-core/polyfills.d.ts} +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.