유니티 FirestoreProperty를 사용한 C# 클래스 매핑
Unity/SDK2024. 1. 21. 14:30유니티 FirestoreProperty를 사용한 C# 클래스 매핑

구현 소개Dictionary를 사용한 데이터 저장은 관리가 불편하다.관리를 쉽게 하기 위해 클래스로 만든 객체 필드,프로퍼티 값들을 Firestore에 저장할 필요가 있다.기능 구현Firestore 전용 데이터 클래스using Firebase.Firestore;[FirestoreData]public class GameUserProfile{ // Info [FirestoreProperty] public string Uid { get; set; } [FirestoreProperty] public string Nickname { get; set; } [FirestoreProperty] public long Gold { get; set; } [FirestoreProperty] publ..

image