Problem statement

I have a problem when I use A/D to moving my character in unity. Everytime I press moving the part of body flip. I do a same code with enemy character but the enemy doesn't have that
problemhttps://esotericsoftware.com/forum/assets/files/2025-02-22/1740232249-153888-e5411269-3055-4229-abeb-87ef489da958.mp4
))

Describe: 1) what you have tried, 2) what you expected, and 3) what actually happened.

Give step-by-step instructions so we can reproduce the problem, if possible.

Editor information

Tell us your Spine Editor version.
Spine 4.2.38
Unity 6

Post your entire spine.log file here (or attach it), if you got any error messages.[
](https://)

Related Discussions
...

It seems like you are experiencing an issue with your character's body flipping unexpectedly when moving in Unity. This could be related to how the flipping logic is implemented in your code. A common approach to flip a character is by adjusting the scaleX property of the root bone or the skeleton. If the enemy character does not have this problem, it might be due to differences in how the flipping is applied or how the bones are set up in the Spine project.

Here are a few things you can try to resolve the issue:

  1. Check the Flipping Logic: Ensure that the code responsible for flipping the character is correctly implemented. You can use skeleton.FlipX() or adjust the scaleX property of the root bone to flip the character. Make sure this logic is consistent with how it's applied to the enemy character.

  2. Bone Inheritance: Verify if any bones have transform inheritance disabled. This can cause parts of the skeleton to not flip correctly. You can check this in the Spine editor and ensure that all necessary bones inherit the correct transformations.

  3. Animation Keys: Ensure that there are no conflicting animation keys that might be affecting the scale or rotation of the bones during movement.

  4. Unity Setup: Double-check the setup in Unity to ensure that the character's skeleton is correctly configured and that there are no additional scripts or components affecting the character's transformation.

If these steps do not resolve the issue, consider providing a minimal reproduction project that demonstrates the problem. This can help in diagnosing the issue more effectively.

@Tux As Spinebot mentioned, this is likely a bug in your gameplay logic, triggering the flip when it is already flipped. Please check your code by attaching the debugger or adding print statements.