반응형 백삼십네번째글1 유니티 C#) 선택된 UI 가져오는 법. (EventSystem.current.currentSelectedGameObject) 이번엔 유니티에서 클릭한(선택한) UI를 가져오는 방법에 대해 알아보도록 하겠다. 사실 이름이 조금 길 뿐이지 별거 없다. 바로 시작하자. using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.EventSystems; public class GameManager : MonoBehaviour { public GameObject SelectedObject = null; Update() { SelectedObject = EventSystem.current.currentSelectedGameObject; } } 일단 선택한 UI를 가져오는 실질적인 코드는.. 게임 개발/유니티C# 2023. 1. 25. 이전 1 다음 💲 추천 글 반응형