You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the define SPINE_TRIANGLECHECK is active (the default), immutableTriangles has no effect.
Fix:
Correct the line ~154 in SkeletonRendererInstruction.csGeometryNotEqual to:
if (a.immutableTriangles != b.immutableTriangles) return true;
if (a.immutableTriangles) return false; // newly added line
and move this block further up, below if (a.hasActiveClipping || b.hasActiveClipping) return true; .
As this is a breaking change, apply this patch in next beta (4.3-beta).
The text was updated successfully, but these errors were encountered:
Reported on the forum here:
https://esotericsoftware.com/forum/d/26850-question-about-the-spine_trianglecheck-/7
When the define
SPINE_TRIANGLECHECK
is active (the default),immutableTriangles
has no effect.Fix:
Correct the line ~154 in
SkeletonRendererInstruction.cs
GeometryNotEqual
to:and move this block further up, below
if (a.hasActiveClipping || b.hasActiveClipping) return true;
.As this is a breaking change, apply this patch in next beta (4.3-beta).
The text was updated successfully, but these errors were encountered: