더보기퍼즐게임만드는 중.퍼즐을 풀다보면 단서를 모으게 되는데 이걸 보관할 수 있는 인벤토리를 만들어야 함.화면 하단 좌측에 숫자키 형태의 인벤토리를 만들기로 결정.인벤토리(단서 수집함) 만들기 1. 단서를 획득시 인벤토리에 표시2. 인벤토리는 숫자 키 1-4로 사용가능3. 숫자 키 입력시 단서 상세내용 확인 가능 ClueData를 ScriptableObject로 만듬. Inventory.csusing System.Collections;using System.Collections.Generic;using TMPro;using Unity.VisualScripting;using UnityEngine;public class Inventory : Singleton{ public List collectedC..