Skip to content

Commit

Permalink
[unity] Fixed clipping end attachment ignored when alpha is 0. Closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
HaraldCsaszar committed Sep 5, 2024
1 parent c9c6b98 commit fbcc080
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ public static void GenerateSkeletonRendererInstruction (SkeletonRendererInstruct
Slot slot = drawOrderItems[i];
if (!slot.Bone.Active
#if SLOT_ALPHA_DISABLES_ATTACHMENT
|| slot.A == 0f
|| (slot.A == 0f && slot.Data != clippingEndSlot)
#endif
) {
workingAttachmentsItems[i] = null;
Expand Down
2 changes: 1 addition & 1 deletion spine-unity/Assets/Spine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "com.esotericsoftware.spine.spine-unity",
"displayName": "spine-unity Runtime",
"description": "This plugin provides the spine-unity runtime core.",
"version": "4.2.83",
"version": "4.2.84",
"unity": "2018.3",
"author": {
"name": "Esoteric Software",
Expand Down

0 comments on commit fbcc080

Please sign in to comment.