json 썸네일형 리스트형 유니티 - 게임 데이터 JSON으로 저장하기 유니티로 게임 제작 시 각종 데이터 정보를 Json으로 저장하는 방법에 대해 알아보겠습니다.Json 저장은 유니티에서 기본 제공하는 JsonUtility을 사용 했습니다. 저장할 데이터 목록은 public List testDataA = new List();public List testDataB = new List();public int gold;public int power;string 리스트 10개와 int 리스트 10개 그리고 플레이어의 골드 및 파워를 저장해 보겠습니다. public class GameManager : MonoBehaviour { public static GameManager instance; public List testDataA = new List(); publ.. 더보기 이전 1 다음