NGUI---图片的切换

0.简单实现切换图片的效果

注意啊,不能在Start方法中获取再修改:this.GetComponent().spriteName = "new spriteName"


1.如果想要实现在按钮上切换图片效果,不单单是修改名称哦

void _OnMusicSoundClick(GameObject go)
    {
        if (AudioManager.Instance.m_mute)
        {
            go.GetComponent().spriteName = "pic_音效开启";
            go.GetComponent().normalSprite = "pic_音效开启";
        }
        else
        {
            go.GetComponent().spriteName = "pic_音效关闭";
            go.GetComponent().normalSprite = "pic_音效关闭";
        }
    }

你可能感兴趣的:(NGUI---图片的切换)