美文网首页
Unity按钮禁用和变灰

Unity按钮禁用和变灰

作者: Leo0543 | 来源:发表于2020-02-24 12:12 被阅读0次

    1、enabled
    如果需要将按钮变灰,则需要另外处理

    //禁用按钮
    this.GetComponent<Button>().enabled = false;
    

    2、interactable
    最近才发现一个禁用和变灰的按钮,这一年的代码我踏马真是白写了

    //禁用和变灰
    this.GetComponent<Button>().interactable = false;
    

    相关文章

      网友评论

          本文标题:Unity按钮禁用和变灰

          本文链接:https://www.haomeiwen.com/subject/hdwmqhtx.html