unity-UGUI隐藏按钮

来源:互联网 发布:阿里云的钱怎么提现 编辑:程序博客网 时间:2024/05/19 13:16

方法1:

Button btn;btn.gameObject.setActive(false);

方法2:

Button btn;btn.transform.localScale = Vector3.zero;

方法3:

将button移到屏幕外

方法4:

调整color的alpha值为0;

0 0