Unity 파일 저장과 불러오기 (Serialization)
Unity에서 파일을 저장하는 방법은 여러 가지가 있는데 이번에 제가 사용한 방법은 BinaryFormatter를 이용한 직렬화(Serialization)입니다. 직렬화는 객체의 내용을 바이트 단위로 변환하여 송수신할 수 있게 만들어주는 것을 의미합니다. 직렬화의 장점으로는 바이너리로 저장되기 때문에 안전하고 속도가 매우 빠르다는 것입니다. Unity - Manual: Script Serialization Script Serialization Serialization is the automatic process of transforming data structures or object states into a format that Unity can store and reconstruct later. So..
2019.07.16