새 기능 시작RPG 메이커 게임도 번역이 하고 싶어졌다.RPG Maker MV/MZ 구조 파악RPG 메이커는 Unity랑 완전히 다르다.RPGMaker_Game/├── www/│ └── data/│ ├── Map001.json│ ├── Map002.json│ ├── CommonEvents.json│ ├── Actors.json│ └── ...JSON이다. 그냥 평문 JSON.Unity처럼 Bundle 파싱 필요 없다. 그냥 읽으면 된다.import jsonwith open('www/data/Map001.json', 'r', encoding='utf-8') as f: data = json.load(f)간단하다. 너무 간단해서 의심스럽다.RPG ..