728x90 JSON2 Unity & C# ~ JsonConvert 사용법 using System; using System.IO; using UnityEngine; using Newtonsoft.Json; //serializable data [Serializable] public class TestData { public string testStr; public TestData(string _inputString) { testStr = _inputString; } } public class TestJson : MonoBehaviour { // Start is called before the first frame update void Start() { //load string filePath = Application.dataPath + "/TestData.json"; string.. 2023. 2. 24. Unity Tool ~ Json parse 및 직렬화에 도움을 주는 툴 https://github.com/jsonfx/jsonfx GitHub - jsonfx/jsonfx: JsonFx v2.0 - JSON serialization framework for .NET JsonFx v2.0 - JSON serialization framework for .NET - GitHub - jsonfx/jsonfx: JsonFx v2.0 - JSON serialization framework for .NET github.com jsonfx는 c#에서 json의 직렬화에 도움을 주는 툴입니다. Unity Assets - Plugins 폴더에 JsonFx.json 파일을 넣어 사용하면 됩니다. 해당 git 페이지에는 사용법이 잘 소개되어 있으니 따라하기 편합니다. 2022. 10. 14. 이전 1 다음 SMALL