Unity/Unity Script
-
UITookit VisualElement 드래그 움직이기Unity/Unity Script 2023. 12. 11. 22:48
Unirx를 사용하여 Unirx 설치가 필요하다. Unirx를 사용하지 않을 것이라면 Update() 등으로 대체해서 사용하면 된다. https://github.com/neuecc/UniRx GitHub - neuecc/UniRx: Reactive Extensions for Unity Reactive Extensions for Unity. Contribute to neuecc/UniRx development by creating an account on GitHub. github.com using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using U..
-
유니티 XML 읽기/쓰기Unity/Unity Script 2022. 1. 10. 13:46
using System.Collections.Generic; using UnityEngine; public class XmlManager { /// XML로 해당 path 경로에 classForSave 함수를 저장합니다. public static T XMLSerialize(T classForSave, string path) { System.Xml.Serialization.XmlSerializer sr = new System.Xml.Serialization.XmlSerializer(typeof(T)); using (System.IO.TextWriter tw = new System.IO.StreamWriter(path)) { sr.Serialize(tw, classForSave); tw.Close(); re..