• RuntimesUnity
  • Stop Spine Physical via script / 如何用程式停止物理約束?

我在unity開發一個AVG遊戲,其中角色的立繪是使用Spine製作
而我目前遇到的情況是當我移動角色立繪時,綁在角色立繪上的物理約束也會跟著動起來?
我要如何使用程式暫時停止Spine的物理運作?

English translation:

I am developing an AVG game in Unity, where the character portraits are created using Spine. Currently, the issue I’m facing is that when I move the character portrait, the physics constraints attached to the character also move along with it. How can I temporarily stop Spine's physics operation through code?

Related Discussions
...

@jim3878 There are two main ways to let any physics constraints in your skeleton ignore GameObject movement:

1) In the Inspector of SkeletonAnimation under the Advanced Physics Inheritance section set Movement relative to to a new parent GameObject which you want to move freely around without causing physics movement.

2) If you just want to "teleport" once and ignore movement for physics for a single frame only, you can reset physics in ony of the following ways:

 // just clears this frame's input GameObject Transform movement,
// leaving the other physics constraint state as-is.
skeletonAnimation.ResetLastPositionAndRotation();

or by calling

// resets the physics constraints
skeletonAnimation.Skeleton.UpdateWorldTransform(Skeleton.Physics.Reset);

Note that ResetLastPositionAndRotation needs to be called before SkeletonAnimation.Update() is called, otherwise this frame's movement is already forwarded to the skeleton's physics constraints. Also see the documentation on script execution order here.

UpdateWorldTransform(Skeleton.Physics.Reset) on the other hand needs to be called after SkeletonAnimation.Update() to reset the constraints after GameObject transform movement was applied.

[Edit] I've just updated my above posting to mention script execution order.

This answer solved my problem.

Glad it helped, thanks for getting back to us.