unity4升级unity5动画文件不能正常播放解决方法
Posted Fei非非
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity4升级unity5动画文件不能正常播放解决方法相关的知识,希望对你有一定的参考价值。
using UnityEngine;
using System.Collections;
using UnityEditor;
public class ZYResetTheAnimator : MonoBehaviour {
[MenuItem("ZY/ResetTheAnimator")]
static void delete()
{
GameObject prefab = AssetDatabase.LoadAssetAtPath<GameObject>("Assets/MWSlideControl.prefab");
//重置动画组件的参数
Animator[] M_Animtor = prefab.GetComponentsInChildren<Animator>(true);
foreach (Animator AnimChild in M_Animtor)
{
Debug.Log("组件的名字:" + AnimChild.name);
AnimChild.applyRootMotion = false;
}
}
}
以上是关于unity4升级unity5动画文件不能正常播放解决方法的主要内容,如果未能解决你的问题,请参考以下文章
Unity4升级Unity5后Image Effects问题
Unity近期整理Unity4.x 项目升级Unity5.0 过程中出现的各种常见问题,与大家共享。