728x90 tab이동1 Unity & C# ~ Tab 키를 눌러서 입력 필드 위치 변경 (public list 활용) Tab 키를 눌렀을 때 입력 필드 위치를 변경하는 방법 중에서 특정 오브젝트만을 list에 담아 적용하는 방법입니다. using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; public class Tabkey : MonoBehaviour { [SerializeField] private List list; private int currentSelectedNum = 0; private void Update() { if (Input.GetKeyDown(KeyCode.Tab)) { //event system에서 선택한 오브젝트가 있는지를 검사 if(EventSystem.curr.. 2022. 11. 17. 이전 1 다음 SMALL