button
Posted zyz322
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了button相关的知识,希望对你有一定的参考价值。
public class button : MonoBehaviour { public GameObject obj;//声明Text游戏对象 private int counter = 1;//声明计数器连良 void Update() { if (counter % 2 == 0)//当计数器可以整除2时 { obj.SetActive(true);//Text游戏对象的active设为true } else { obj.SetActive(false);//否则Text游戏对象的active设为false } } public void OnClick() { counter++;//计数器自加 } }
以上是关于button的主要内容,如果未能解决你的问题,请参考以下文章