JsonNewtonsoft / JsonConver.DeserializeObjectcom.unity.nuget.newtonsoft-json / 유니티 JSON 에셋 추가(Add package by name)Json 안에 Json 까지 완료Json{ "playerName": "Inhye", "level": 10, "hp": 150} Unity의 JsonUtility👉 [System.Serializable] 붙은 클래스만 직렬화 가능 👉 public 필드만 직렬화됨 👉 프로퍼티는 기본적으로 안됨 [System.Serializable]public class PlayerData{ public string playerName; public int level; public int ..