Newtonsoft의 Json.NET을 사용하였다. using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System.IO; 밑의 코드들은 위의 코드를 넣어주어야 사용 가능하다. Data = ReadJson("Json 파일명"); public T ReadJson(string fileName) { TextAsset textAsset = Resources.Load(fileName); return JsonConvert.DeserializeObject(textAsset.ToString()); } Assets/Resources 안에 있는 Json 파일을 읽어오는 코드이다. filePath = Application.persistentDataPath; Data = Re..