@galacean/engine-spine 4.2.1 → 4.2.2

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.
Files changed (59) hide show
  1. package/dist/browser.js +1 -1
  2. package/dist/main.js +6 -4
  3. package/dist/main.js.map +1 -1
  4. package/dist/miniprogram.js +6 -4
  5. package/dist/module.js +6 -4
  6. package/dist/module.js.map +1 -1
  7. package/package.json +3 -3
  8. package/types/SpineAnimation.d.ts +48 -0
  9. package/types/SpineLoader.d.ts +32 -0
  10. package/types/SpineMaterial.d.ts +6 -0
  11. package/types/SpineRenderer.d.ts +38 -0
  12. package/types/core/MeshGenerator.d.ts +43 -0
  13. package/types/core/SpineMesh.d.ts +11 -0
  14. package/types/spine-core/Animation.d.ts +378 -0
  15. package/types/spine-core/AnimationState.d.ts +365 -0
  16. package/types/spine-core/AnimationStateData.d.ts +23 -0
  17. package/types/spine-core/AssetManager.d.ts +36 -0
  18. package/types/spine-core/AtlasAttachmentLoader.d.ts +23 -0
  19. package/types/spine-core/BlendMode.d.ts +7 -0
  20. package/types/spine-core/Bone.d.ts +110 -0
  21. package/types/spine-core/BoneData.d.ts +44 -0
  22. package/types/spine-core/ConstraintData.d.ts +7 -0
  23. package/types/spine-core/Event.d.ts +16 -0
  24. package/types/spine-core/EventData.d.ts +13 -0
  25. package/types/spine-core/IkConstraint.d.ts +38 -0
  26. package/types/spine-core/IkConstraintData.d.ts +26 -0
  27. package/types/spine-core/PathConstraint.d.ts +46 -0
  28. package/types/spine-core/PathConstraintData.d.ts +52 -0
  29. package/types/spine-core/SharedAssetManager.d.ts +19 -0
  30. package/types/spine-core/Skeleton.d.ts +134 -0
  31. package/types/spine-core/SkeletonBinary.d.ts +49 -0
  32. package/types/spine-core/SkeletonBounds.d.ts +48 -0
  33. package/types/spine-core/SkeletonClipping.d.ts +22 -0
  34. package/types/spine-core/SkeletonData.d.ts +89 -0
  35. package/types/spine-core/SkeletonJson.d.ts +34 -0
  36. package/types/spine-core/Skin.d.ts +43 -0
  37. package/types/spine-core/Slot.d.ts +42 -0
  38. package/types/spine-core/SlotData.d.ts +23 -0
  39. package/types/spine-core/Texture.d.ts +46 -0
  40. package/types/spine-core/TextureAtlas.d.ts +30 -0
  41. package/types/spine-core/TransformConstraint.d.ts +36 -0
  42. package/types/spine-core/TransformConstraintData.d.ts +34 -0
  43. package/types/spine-core/Triangulator.d.ts +14 -0
  44. package/types/spine-core/Updatable.d.ts +9 -0
  45. package/types/spine-core/Utils.d.ts +124 -0
  46. package/types/spine-core/VertexEffect.d.ts +7 -0
  47. package/types/spine-core/attachments/Attachment.d.ts +43 -0
  48. package/types/spine-core/attachments/AttachmentLoader.d.ts +25 -0
  49. package/types/spine-core/attachments/AttachmentType.d.ts +9 -0
  50. package/types/spine-core/attachments/BoundingBoxAttachment.d.ts +12 -0
  51. package/types/spine-core/attachments/ClippingAttachment.d.ts +14 -0
  52. package/types/spine-core/attachments/MeshAttachment.d.ts +46 -0
  53. package/types/spine-core/attachments/PathAttachment.d.ts +19 -0
  54. package/types/spine-core/attachments/PointAttachment.d.ts +20 -0
  55. package/types/spine-core/attachments/RegionAttachment.d.ts +88 -0
  56. package/types/spine-core/polyfills.d.ts +3 -0
  57. package/types/spine-core/vertexeffects/JitterEffect.d.ts +11 -0
  58. package/types/spine-core/vertexeffects/SwirlEffect.d.ts +16 -0
  59. package/types/types.d.ts +4 -0
@@ -10919,8 +10919,10 @@ var SubRenderItem = function SubRenderItem() {
10919
10919
  this.buildPrimitive(skeleton, renderer);
10920
10920
  return;
10921
10921
  }
10922
- renderer._vertexBuffer.setData(_vertices);
10923
- renderer._indexBuffer.setData(_indices);
10922
+ if (renderer._vertexBuffer) {
10923
+ renderer._vertexBuffer.setData(_vertices);
10924
+ renderer._indexBuffer.setData(_indices);
10925
+ }
10924
10926
  };
10925
10927
  _proto.addSeparateSlot = function addSeparateSlot(slotName) {
10926
10928
  this._separateSlots.set(slotName, slotName);
@@ -10992,7 +10994,7 @@ var SpineMaterial = /*#__PURE__*/ function(Material) {
10992
10994
  return SpineMaterial;
10993
10995
  }(miniprogram.Material);
10994
10996
  SpineMaterial._spineVS = "\n uniform mat4 renderer_MVPMat;\n\n attribute vec3 POSITION;\n attribute vec2 TEXCOORD_0;\n attribute vec4 COLOR_0;\n \n varying vec2 v_uv;\n varying vec4 v_color;\n \n void main()\n {\n gl_Position = renderer_MVPMat * vec4(POSITION, 1.0);\n \n v_uv = TEXCOORD_0;\n v_color = COLOR_0;\n }\n ";
10995
- SpineMaterial._spineFS = "\n uniform sampler2D material_SpineTexture;\n\n varying vec2 v_uv;\n varying vec4 v_color;\n \n void main()\n {\n vec4 baseColor = texture2D(material_SpineTexture, v_uv);\n gl_FragColor = baseColor * v_color;\n }\n ";
10997
+ SpineMaterial._spineFS = "\n #include <common>\n uniform sampler2D material_SpineTexture;\n\n varying vec2 v_uv;\n varying vec4 v_color;\n \n void main()\n {\n vec4 baseColor = texture2DSRGB(material_SpineTexture, v_uv);\n gl_FragColor = baseColor * sRGBToLinear(v_color);\n }\n ";
10996
10998
 
10997
10999
  /**
10998
11000
  * Spine animation renderer, capable of rendering spine animations and providing functions for animation and skeleton manipulation.
@@ -11633,7 +11635,7 @@ for(var key in RendererObject){
11633
11635
  for(var key1 in LoaderObject){
11634
11636
  miniprogram.Loader.registerClass(key1, LoaderObject[key1]);
11635
11637
  }
11636
- var version = "4.2.1";
11638
+ var version = "4.2.2";
11637
11639
  console.log("Galacean spine version: " + version);
11638
11640
 
11639
11641
  exports.AlphaTimeline = AlphaTimeline;
package/dist/module.js CHANGED
@@ -10914,8 +10914,10 @@ var SubRenderItem = function SubRenderItem() {
10914
10914
  this.buildPrimitive(skeleton, renderer);
10915
10915
  return;
10916
10916
  }
10917
- renderer._vertexBuffer.setData(_vertices);
10918
- renderer._indexBuffer.setData(_indices);
10917
+ if (renderer._vertexBuffer) {
10918
+ renderer._vertexBuffer.setData(_vertices);
10919
+ renderer._indexBuffer.setData(_indices);
10920
+ }
10919
10921
  };
10920
10922
  _proto.addSeparateSlot = function addSeparateSlot(slotName) {
10921
10923
  this._separateSlots.set(slotName, slotName);
@@ -10987,7 +10989,7 @@ var SpineMaterial = /*#__PURE__*/ function(Material) {
10987
10989
  return SpineMaterial;
10988
10990
  }(Material);
10989
10991
  SpineMaterial._spineVS = "\n uniform mat4 renderer_MVPMat;\n\n attribute vec3 POSITION;\n attribute vec2 TEXCOORD_0;\n attribute vec4 COLOR_0;\n \n varying vec2 v_uv;\n varying vec4 v_color;\n \n void main()\n {\n gl_Position = renderer_MVPMat * vec4(POSITION, 1.0);\n \n v_uv = TEXCOORD_0;\n v_color = COLOR_0;\n }\n ";
10990
- SpineMaterial._spineFS = "\n uniform sampler2D material_SpineTexture;\n\n varying vec2 v_uv;\n varying vec4 v_color;\n \n void main()\n {\n vec4 baseColor = texture2D(material_SpineTexture, v_uv);\n gl_FragColor = baseColor * v_color;\n }\n ";
10992
+ SpineMaterial._spineFS = "\n #include <common>\n uniform sampler2D material_SpineTexture;\n\n varying vec2 v_uv;\n varying vec4 v_color;\n \n void main()\n {\n vec4 baseColor = texture2DSRGB(material_SpineTexture, v_uv);\n gl_FragColor = baseColor * sRGBToLinear(v_color);\n }\n ";
10991
10993
 
10992
10994
  /**
10993
10995
  * Spine animation renderer, capable of rendering spine animations and providing functions for animation and skeleton manipulation.
@@ -11628,7 +11630,7 @@ for(var key in RendererObject){
11628
11630
  for(var key1 in LoaderObject){
11629
11631
  Loader.registerClass(key1, LoaderObject[key1]);
11630
11632
  }
11631
- var version = "4.2.1";
11633
+ var version = "4.2.2";
11632
11634
  console.log("Galacean spine version: " + version);
11633
11635
 
11634
11636
  export { AlphaTimeline, Animation, AnimationState, AnimationStateAdapter, AnimationStateData, AssetManagerBase, AtlasAttachmentLoader, Attachment, AttachmentTimeline, BinaryInput, BlendMode, Bone, BoneData, BoundingBoxAttachment, CURRENT, ClippingAttachment, Color, ConstraintData, CurveTimeline, CurveTimeline1, CurveTimeline2, DebugUtils, DeformTimeline, Downloader, DrawOrderTimeline, Event, EventData, EventQueue, EventTimeline, EventType, FIRST, FakeTexture, HOLD_FIRST, HOLD_MIX, HOLD_SUBSEQUENT, IkConstraint, IkConstraintData, IkConstraintTimeline, Inherit, InheritTimeline, IntSet, Interpolation, LoaderUtils, MathUtils, MeshAttachment, MixBlend, MixDirection, PathAttachment, PathConstraint, PathConstraintData, PathConstraintMixTimeline, PathConstraintPositionTimeline, PathConstraintSpacingTimeline, Physics, PhysicsConstraintDampingTimeline, PhysicsConstraintGravityTimeline, PhysicsConstraintInertiaTimeline, PhysicsConstraintMassTimeline, PhysicsConstraintMixTimeline, PhysicsConstraintResetTimeline, PhysicsConstraintStrengthTimeline, PhysicsConstraintTimeline, PhysicsConstraintWindTimeline, PointAttachment, Pool, PositionMode, Pow, PowOut, RGB2Timeline, RGBA2Timeline, RGBATimeline, RGBTimeline, RegionAttachment, RotateMode, RotateTimeline, SETUP, SUBSEQUENT, ScaleTimeline, ScaleXTimeline, ScaleYTimeline, SequenceTimeline, ShearTimeline, ShearXTimeline, ShearYTimeline, Skeleton, SkeletonBinary, SkeletonBounds, SkeletonClipping, SkeletonData, SkeletonJson, Skin, SkinEntry, Slot, SlotData, SpacingMode, SpineAnimationRenderer, SpineMaterial, SpineResource, StringSet, Texture, TextureAtlas, TextureAtlasPage, TextureAtlasRegion, TextureFilter, TextureRegion, TextureWrap, TimeKeeper, Timeline, TrackEntry, TransformConstraint, TransformConstraintData, TransformConstraintTimeline, TranslateTimeline, TranslateXTimeline, TranslateYTimeline, Triangulator, Utils, Vector2, VertexAttachment, WindowedMean, version };