如果总结有误,还请批评
Unity apply root motion和bake into pose之间的联系
官网资料
https://docs.unity3d.com/Manual/RootMotion.html
正文
unity中动画的变换分为body transform和root transform。
body transform ,动画发生位移,和旋转只是单纯的动画效果和模型没有关系。
root transform ,动画发生的位置和旋转会改变模型实际的位置和旋转。
apply motion的作用
启动root transform
bake into pose的作用
启动 body transform。
情况序号 | apply root motion | bake into pose | 类型 |
---|---|---|---|
1 | true | true | body transform |
2 | false | true | body transfrom |
3 | true | false | root transform |
4 | false | false | root transfrom |
情况说明: