티스토리 뷰
728x90
반응형
UGUI의 버튼을 disable 시키고 싶을때는 다음과 같이 한다.
SetActive(false)를 하면 화면에서 아예 사라지기 때문에 disable, gray화 시켜야 한다.
GameObject myButton;
myButton = GameObject.Find ("Button");
myButtonScript = myButton.GetComponent<Button>();
myButtonScript.interactable = false;
반응형
'게임 프로그래밍' 카테고리의 다른 글
Unity StackTrace (0) | 2017.03.17 |
---|---|
Unity3D 애니메이션 종료 확인 (0) | 2017.01.21 |
Unity3D IL2CPP 사용하기 (0) | 2016.11.25 |
언리얼 엔진4 설치 (0) | 2016.05.30 |
Unity3D 안드로이드 프로젝트 Export시 JDK가 없다고 나오는 경우 (0) | 2016.04.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday