From c10bc05088b3379de66750b8759c7920483d404c Mon Sep 17 00:00:00 2001 From: Davide Tantillo Date: Fri, 25 Jul 2025 09:14:55 +0200 Subject: [PATCH] [haxe] Port of commit 25bd863: Reverse IK bend positive logic (#2895). Requires 4.3.39-beta+. --- spine-haxe/spine-haxe/spine/SkeletonBinary.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-haxe/spine-haxe/spine/SkeletonBinary.hx b/spine-haxe/spine-haxe/spine/SkeletonBinary.hx index 8108766e6..3e0acc648 100644 --- a/spine-haxe/spine-haxe/spine/SkeletonBinary.hx +++ b/spine-haxe/spine-haxe/spine/SkeletonBinary.hx @@ -247,7 +247,7 @@ class SkeletonBinary { data.skinRequired = (flags & 1) != 0; data.uniform = (flags & 2) != 0; var setup = data.setup; - setup.bendDirection = (flags & 4) != 0 ? 1 : -1; + setup.bendDirection = (flags & 4) != 0 ? -1 : 1; setup.compress = (flags & 8) != 0; setup.stretch = (flags & 16) != 0; if ((flags & 32) != 0)