- 最后登录
- 2019-12-25
- 注册时间
- 2012-8-24
- 阅读权限
- 90
- 积分
- 71088
- 纳金币
- 52336
- 精华
- 343
|
代码如下,我从一个object中copy了一个animation clip, 在模型中播放动画没问题,但是copy后,在另外一个object中无法播放,麻烦大家帮我看下什么问题,多谢了!
2个object位置都一样的。
private var obj : GameObject;
function Start ()
{
obj = GameObject.Find("m_test");
gameObject.AddComponent("Animation");
animation.AddClip(obj.animation["draw"].clip, "draw");
}
function OnGUI()
{
if (GUILayout.Button("draw")) // 不能播放显示内容
{
this.animation.Play("draw");
}
if (GUILayout.Button("test")) // 可以播放显示
{
obj.animation.Play("draw");
}
} |
|