Misaki 我是否在调整变换约束的过程中不应该去移动插槽,而是去移动插槽下的附件,这个貌似是我出现问题的根本原因?
对于具有相同骨骼结构的不同骨架,如何使用同一套动画
Nate 有关之前您提到的附件缩放的处理办法
我们遇到了新的问题
目前通过变化约束缩放骨骼和在IK控制的骨骼节点下新增新的骨骼禁用缩放,我们让骨骼尺寸适配了新角色的附件尺寸,可是当我通过IK去控制这部分骨骼变换的时候,IK所控制的骨骼长度发生了变化,导致骨骼和附件又一次的匹配不上了。
不确定这个问题是否和变换约束缩放IK骨骼长度有关,求助
ECG_Kinsey (Except for the IK issue you just posted, this is an answer to your earlier question on the matter.)
I think your understanding that you need to move the attachment is correct, but it's hard to explain well in words, so I've recorded the process of setting up the example I just posted above and uploaded it below so you can take a look at it:
ECG_Kinsey Hmmm, as far as I have tried on my end, changing the bone scale in the transform constraint does not produce that result. I've attached a updated Spine project with the results of my own testing (in skin B
I scale the arm bones via the transform constraint UpperArm_Position_B
):
Perhaps the quickest way to confirm your problem is to see your Spine project in person. A minimal Spine project with irrelevant parts removed would be fine, so could you email it to us?: contact@esotericsoftware.com
Bone and attachment (Images
) compensation affects manipulating bones in the viewport. It does not affect applying constraints. It is not applied when adjusting a transform constraint.
You are fine up to this step:
If I understand, you parent the slot to the root bone, apply the transform constraint, then parent the slot back. That puts the arm in the right position, but in your original skin the arm moves. Is the arm that moves in the same slot? If so, then you can't use parenting the slot to the root to move your attachment. Instead, parent only the attachments in the second skin to the root bone in a new slot, apply the transform constraint, then parent them back and delete the temporary slots on the root bone.
As a simpler test, instead of changing the parent of attachments in the tree, just manually move the attachments to be in the right place in the viewport. Each attachment has its own position. Moving one doesn't affect other attachments in the slot or in other skins. (Except for linked meshes, which share the vertex positions.)
For your IK scaling problem, you probably need to set the transform constraint to local and possibly relative. In general it's not possible to tell what is going on from an image or GIF. If you can send a .spine
file it would be easier to provide guidance.
Misaki 已经准备了一个工程通过邮件发至对应邮箱,可以复现这个问题,我的Spine版本是4.1.24
- Đã chỉnh sửa
Thank you for the simplified project. The first thing we will do is delete everything that doesn't affect the problem, so I appreciate that you have done that.
The problem is here, the constraint Hình ảnh bị xóa do không hỗ trợ HTTPS. | Vẫn hiển thị[FIX]F-arm
:
When scale X and scale Y are different values, it is called non-uniform scale. This constraint applies non-uniform scale to bone F-arm
. The bone F-wrist
is a child so it inherits scale from its parent. That scale from the parent is applied in the direction of the parent. When F-wrist
points in the same direction as the parent, F-wrist
is scaled shorter. When F-wrist
is rotated 90 degrees from the parent, it is no longer shorter, it is instead made wider. As your IK target is moved, F-wrist
is rotated and the scale from the parent changes its length.
To fix it, use uniform scale, where scale X and scale Y have the same values: Hình ảnh bị xóa do không hỗ trợ HTTPS. | Vẫn hiển thị
With this, no matter what rotation F-wrist
has, it will always be the same length.
You probably want to use uniform scale in other areas. I also suggest turning off transform constraint mixes you don't need, eg rotation and shear.
I forgot to mention, my earlier project was saved with 4.2, so it won't open in 4.1. It's probably not useful now anyway.
Nate 就是这个导致的,我这边按照你的指点调整了以后也顺利解决了,非常感谢你和Misaki的耐心讲解,我学习到很多,感谢有你们的帮助!
Sure, we're glad to help!
It is a little unfortunate to need to disable inherit scale to change bone lengths for skins, and to have to introduce intermediary bones for attachments. We'll consider other ways to change the bone length. For it to be in the skin, it'd need to be a constraint.
Nate 之前提及的问题一切都解决的很顺利,等我们绑定完骨骼开始预览动画的时候,出现了新的问题。
我们发现通过变换约束缩放的骨骼在父节点旋转的时候,无法保持固定的相对位置,会随着旋转产生偏移量。
请关注下面图中肩膀的位置
这是通过普通的骨骼绑定产生的效果,也是我们期望得到的效果。
这是通过变换约束调整不同尺寸骨架绑定的效果,这种方式在旋转的过程中,产生了异常。
我们准备了一个工程文件,可以复现这个问题。在这个工程中,有两个骨架,分别命名为“Wrong”和“Correct”,他们一个表现正常,一个表现出了我上面所述的问题。
我们已经做了很多检查,不知道我们做错了什么,希望能得到帮助
- Đã chỉnh sửa
You mentioned before that it is recommended to turn off unnecessary transformation constraint blending. Even if the transformation constraint blending I currently enable does not take effect, will there be any additional overhead or other effects?
Yes, the transform constraint does extra work for rotation and shearY. Set the mixes to 0 for transform properties you don't need to affect.
Thank you for the reproduction Spine project. The behavior occurs because you are using the transform constraint in the world coordinate system. When doing that "up" is always toward the top of your monitor. When the bones rotate, moving the bones toward the top of your monitor becomes the wrong direction.
To fix it, check Local
. This moves the bones in their local coordinate system, where "up" is in relation to the parent bone. That way when everything rotates, the up direction also rotates, and the shoulder stays in the correct place in relation to the other bones and attachments.
After changing to Local
you likely need to reposition your bones.
Nate 感谢,这个很有帮助