[Unity] UI 1 : HUD
UI HUDUI HUD의 역할HP 상황을 띄워준다.왼쪽 하단에 아이템의 개수 현황(코인, 키, )과 몬스터 수를 요약해서 보여준다.HUD 요소들은 다른 UI가 활성화될 때 보이지 않아야 함 필요한 변수들 선언using System.Collections.Generic;using UnityEngine;using UnityEngine.UI;public class UI_0_HUD : MonoBehaviour{ private static UI_0_HUD instance = null; // UI Window public GameObject UI_W_HUD = null; // Detail // HP [SerializeField] private List hpPrefabsList; ..