• RuntimesUnity
  • 关于4.0以后版本旋转在预览窗口混合的效果和在Unity的Animator中混合效果不一致的问题。

在unity的animator当中,skill动画里我的武器顺时针旋转了两圈。但当skill结束,混合idle时,武器会反向旋转两圈以混合idle。但在预览窗口,则会以最小的角度方向去混合idle。我希望能引擎内效果和预览保持一致,该如何做?

Related Discussions
...

在Unity中,动画混合时的旋转方向问题通常是由于动画状态选择了最短的旋转方向。在Spine的预览窗口中,通常会选择最短的旋转方向进行混合,这可能与Unity中的表现不一致。为了在Unity中实现与Spine预览一致的效果,可以尝试以下方法:

  1. 调整动画的起始或结束旋转:在动画的结束时间减去混合持续时间的位置调整旋转,或者在下一个动画的开始位置调整旋转,以便在混合开始时选择另一种旋转方向。

  2. 使用中间动画:创建一个中间动画,确保骨骼以期望的方向旋转。可以在检测到混合可能导致问题时使用中间动画。

  3. 使用TrackEntry的resetRotationDirectionsshortestRotation:在Unity中,使用resetRotationDirections可以在混合开始时重置旋转方向,或者使用shortestRotation来始终选择最短的旋转方向。

通过这些方法,可以在Unity中实现与Spine预览窗口一致的旋转混合效果。

    Spinebot shortestRotation

    这个设置在哪里?

    @fivestar TrackEntry.ShortestRotation can be set at the TrackEntry object that is returned from calls to AnimationState.SetAnimation or AnimationState.AddAnimation.

    It might also be the case that you've keyed an undesired rotation value outside your desired 0-360 degrees accidentally in your animation. Please note that the active Axis mode is relevant when setting rotation keys, Local and Parent allow you to set rotation values ending up, while World will set an angle clamped to 0-360 degrees.
    http://en.esotericsoftware.com/spine-keys#Bone-transforms

      emm..

      Harald 我认为旋转属性默认情况下在引擎内混合时就应该以最短路径去混合。而不是在调用API之后。因为在绝大部分情况下,没有哪个动画师会希望自己的动画混合的时候会反向旋转回目标动画。而且在制作动画的过程中,要时刻注意旋转了多少圈以防止混合出问题实在是太糟糕了。

      @fivestar The shortest rotation is used by default. The ShortestRotation property just defines whether the shortest rotation is defined once at the start of an animation mix, or whether it's always re-evaluated, thus leading to potential change in direction midway. See the documentation text:

      If true, mixing rotation between tracks always uses the shortest rotation direction. If the rotation is animated, the shortest rotation direction may change during the mix.
      If false, the shortest rotation direction is remembered when the mix starts and the same direction is used for the rest of the mix. Defaults to false.

      @fivestar If you see strange behaviour of e.g. going round twice with simple mixing, then the keyed rotation values might likely be keyed with more than 360 degrees difference. E.g. one animation keyed at 180 degrees, and one at 450 degrees. Did you check the keyed rotation values with axis mode Local or Parent?