[Unity] 빌드(Build)했을 때, JSON 파일을 읽지 못하는 현상
분명 유니티 에디터 상에서 실행했을 때는 JSON 파일을 잘 읽어왔었습니다. 그런데, 빌드만 하면 읽어오지 못하는 문제가 발생했네요... 이것 때문에 2시간은 삽질한 것 같습니다. 1. 문제의 JSON 파일 읽어오기 코드 using System.IO; using LitJson; private const string jsonFilePath = "/Resources/Json/Narration.json"; private JsonData ReadJsonFile() { if(File.Exists(Application.dataPath + jsonFilePath)) { string jsonString = File.ReadAllText(Application.dataPath + jsonFilePath); JsonData..