inspector animation
Самое главное то
Что анимация стает на последний кадр и стоит(значит работает), но не повторяется и не проигрывается
Добавлено (21.06.2013, 23:03)
---------------------------------------------
При попытке
animation.Play - выводит
Код
MissingComponentException: There is no 'Animation' attached to the "soldier:Hips" game object, but a script is trying to access it.
You probably need to add a Animation to the game object "soldier:Hips". Or your script needs to check if the component is attached before using it.
UnityEngine.Animation.Play (System.String animation) (at C:/BuildAgent/work/7535de4ca26c26ac/Runtime/ExportGenerated/Editor/Animations.cs:562)
Menu_GUI.OnGUI () (at Assets/Example4/MenuAssets/Menu_GUI.js:473)
Проблема решена!
Если у кого-то вдруг будет такая-же решение проблемы
Не воспроизводить анимацию через переменную
Код
var OBJ : GameObject;
OBJ.animation["anim_name"].wrapMode = WrapMode.Once;
OBJ.animation.Play("anim_name");