查看: 1408|回复: 2
打印 上一主题 下一主题

怎样切换角色?或者说,怎样让一个角色消失或出现?

[复制链接]

9903

主题

126

听众

7万

积分

首席设计师

Rank: 8Rank: 8

纳金币
53488
精华
316

最佳新人 热心会员 灌水之王 活跃会员 突出贡献 荣誉管理 论坛元老

跳转到指定楼层
楼主
发表于 2013-6-29 05:32:45 |只看该作者 |倒序浏览
using UnityEngine;
using System.Collections;

public class switchAni : MonoBehaviour {

GameObject ani1;
GameObject ani2;

// Use this for initialization
void Start () {

ani1 = GameObject.Find ("Run");
ani2 = GameObject.Find ("AttackA");

}

// Update is called once per frame
void Update () {

if (Input.GetKey (KeyCode.Alpha1))
{
ani1.renderer.enabled = false;
ani2.renderer.enabled = true;
ani1.animation.Stop ();
ani2.animation.Play ();
}
else if (Input.GetKey (KeyCode.Alpha2))
{
ani1.renderer.enabled = true;
ani2.renderer.enabled = false;
ani1.animation.Play ();
ani2.animation.Stop ();
}

}
}


这是我参照这里写的:
http://answers.unity3d.com/questions/8632/how-to-change-my-character-during-the-game.html
可是为什么没反应?
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

无效楼层,该帖已经被删除
您需要登录后才可以回帖 登录 | 立即注册

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

GMT+8, 2024-11-15 07:24 , Processed in 0.090334 second(s), 29 queries .

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

© 2008-2019 Narkii Inc.

回顶部