C#/수업 과제
[유니티] 토글 버튼 단순 구현
코드 using UnityEngine; using UnityEngine.UI; public class CheckButtonDirector : MonoBehaviour { public Toggle[] toggles; public void Awake() { this.toggles[0].isOn = false; this.toggles[1].isOn = false; } void Start() { for (int i = 0; i { Debug.LogFormat("{0} 의 토글 상태 : {1}", this.toggles[temp].name, x); }); } } } 구현 영상 토..