12 第1页 | 共2 页下一页
返回列表 发新帖
查看: 2527|回复: 13
打印 上一主题 下一主题

角色动画中的细节动画的实现

[复制链接]

5552

主题

2

听众

8万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
11

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2011-11-3 14:46:00 |只看该作者 |倒序浏览

          This is a tutorial on getting bones that are part of an animated skeleton to be controlled by Unity’s physics system rather than animation, i.e. ragdoll or jiggle bones. It took me a while to figure out the specifics of getting it working.
         
           This method will also work with 3ds max Bipeds Twist bones, which rely on the animation being fully baked.
         

           Click on any of the images for a larger version.
         

           setting up in 3ds max
           








            
         

           Set up and skin your rig as you usually would. Include any bones you would like to be jiggle bones and attach them into the skeleton’s hierarchy as normal.
         

           In my case, I have some dangling belt attachments and my characters ponytail intended to be jiggle bones.
         

            the key to jiggle bones
         

           The important thing to note is that, while all of my regular bones are keyframed into the T-Pose, the jiggle bones do not have keyframes. They are positioned correctly but they are not keyframed into position.
         

           It is imperative that the jiggle bones remain unkeyframed throughout your T-Pose and all of your animations. One keyframe anywhere in there and the animation system takes control over the physics and you’ve just got regular skeletal animation again.
           








           exporting the t-pose
         

           When exporting the t-pose, select your mesh(es) and your bones, including your twist bones and including the bones that you want to be jiggle bones.
         

           Go to Export > Export Selected and choose FBX as the format.
           








           Ensure that you do not export animation at this point – we only want the model, it’s bones and the skinning information. Chosing animation export here will mean that it gives keyframed positions to our jiggle bones, which stops them being jiggle bones.
           








            exporting animations
         

           When using Bipeds Twist bones, they are not keyframed directly and so have to have the animation fully baked out.
         

           The problem arises here, because baking the animation also means that any jiggle bones get keyframes assigned. Disaster!
         

           What do we do? Simple – don’t export the jiggle bones at all when exporting animation.
         

           This is where Export Selected comes into play again. We simply select everything we did in the T-Pose export except the jiggle bones. Unity will simply find that the jiggle bones aren’t in the exported animation and won’t attempt to apply the animation to our jiggle bones.
         

           To this end, I find it easier to keep the jiggle bones in their own layer that I keep frozen. Which stops me accidentally moving, selecting or keyframing them.
           








           So, once you have selected everything you want exported (except the jiggle bones, of course), go once again to Export > Export Selected and choose FBX as the format.
         

           This time the filename’s the Unity animation  standard of [modelName]@[animationName].fbx.
         

           Ensure you tick the box marked Bake, or your twist bones won’t be exported.
           








           setting up in unity
         

           Now the jiggle bones are in and unkeyframed, hooking them up to the physics engine is the same process as you would set up any ragdolled joint, but I’ll run through the process anyway.
         

           the parent bone
         

           The parent bone should be whichever bone your jiggle bone is attached to. First up, drag your model into the scene then find and select the parent bone in the project hierarchy.
         

           Apply a rigidbody to your parent bone. Set it to be Kinematic and uncheck Apply Gravity.
         

           Apply a collider to your parent bone and set up it’s scale and alignment so that it fits the mass of the vertices the bone has influence over.
           








           the jiggle bone
         

           Jump down the hierarchy in the project pane and select the bone you want to be a jiggle bone.
         

           Again, apply a rigidbody but this time ensure Kinematic is unchecked and Apply Gravity is checked. Set the mass and drag to fit the material and size of whatever your jiggle bone is.
         

           Apply a collider and set it’s scale and alignment to fit your jiggle bone.
         

           Now apply a physics joint. Any kind will work but in this instance I’m using a Character Joint. Set the Connected Body to be the same Rigidbody component you just applied to the parent bone. Set up the constraints of your physics joint to be what you like.
           








           other bones
         

           In some cases, you will want other parts of your model to collide with your jiggle bone. In my case, I want both of my characters thighs to be able to knock the belt attachments around as she runs.
         

           For each of these bones, repeat the process we used in the parent bone of attaching a kinematic rigidbody and collider.
           








           final touches
         

           So, now we should have rigidbodied bones that succumb to gravity and collide with other bones as they move via skeletal animation.
         

           But you’ll notice that as your character moves around the world, they don’t get affected by momentum, they just sit there hanging down.
         

           There are two possible solutions to this;
         

           1) In your models Animation component in the inspector, there’s a tickbox for “Animate Physics”, which may work for you but I found this gives very jittery, erratic results. So, as a solution…
         

           2) Use a little script to get the movement of the parent bone and apply it as a force to the rigidbody. Create a new Java Script and copy this code into it then apply it to each of your jiggle bones;
         

           #pragma strict
         

           private var thisParent : Transform;
         

           private var thisRigidbody : Rigidbody;
         

           private var parentPosLastFrame : Vector3 = Vector3.zero;
         

           function Awake () {
         

           thisParent = transform.parent;
         

           thisRigidbody = transform.GetComponent.< Rigidbody > ();
         

           }
         

           function Update () {
         

           thisRigidbody.AddForce ( ( parentPosLastFrame - thisParent.position ) * 100 );
         

           parentPosLastFrame = thisParent.position;
         

           }
         

           finished!
           









分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

   

671

主题

1

听众

3247

积分

中级设计师

Rank: 5Rank: 5

纳金币
324742
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

沙发
发表于 2012-1-20 23:25:58 |只看该作者
今年过年不收礼,收礼只收你短信,祝福不分大小,只要真心我就要。条数越多我越高兴,手机越响我越开心,你可否提前把礼送,等礼等得我好心焦。
回复

使用道具 举报

tc    

5089

主题

1

听众

33万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

板凳
发表于 2012-3-24 23:24:49 |只看该作者
都闪开,介个帖子,偶来顶
回复

使用道具 举报

tc    

5089

主题

1

听众

33万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

地板
发表于 2012-4-3 23:27:21 |只看该作者
好`我顶``顶顶
回复

使用道具 举报

462

主题

1

听众

31万

积分

首席设计师

Rank: 8Rank: 8

纳金币
2
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

5#
发表于 2012-4-15 23:24:27 |只看该作者
不错啊 经典
回复

使用道具 举报

1023

主题

3

听众

359

积分

设计实习生

Rank: 2

纳金币
335582
精华
0

最佳新人

6#
发表于 2012-4-24 08:04:43 |只看该作者
既来之,则看之!
回复

使用道具 举报

462

主题

1

听众

31万

积分

首席设计师

Rank: 8Rank: 8

纳金币
2
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

7#
发表于 2012-4-29 23:26:50 |只看该作者
再次路过……
回复

使用道具 举报

5969

主题

1

听众

39万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

8#
发表于 2012-6-22 23:20:35 |只看该作者
发了那么多,我都不知道该用哪个给你回帖了,呵呵
回复

使用道具 举报

   

671

主题

1

听众

3247

积分

中级设计师

Rank: 5Rank: 5

纳金币
324742
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

9#
发表于 2012-8-15 00:11:23 |只看该作者
很有心,部分已收录自用,谢谢
回复

使用道具 举报

1023

主题

3

听众

359

积分

设计实习生

Rank: 2

纳金币
335582
精华
0

最佳新人

10#
发表于 2012-10-6 23:26:27 |只看该作者
先顶上去,偶要高亮加精鸟!
回复

使用道具 举报

12 第1页 | 共2 页下一页
返回列表 发新帖
您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2025-7-27 19:47 , Processed in 0.090187 second(s), 29 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部