유니티 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..

유니티 Firestore를 통한 데이터 저장 & 불러오기
Unity/SDK2024. 1. 18. 22:12유니티 Firestore를 통한 데이터 저장 & 불러오기

기능 구현Firestore 초기화FirebaseApp app = FirebaseApp.DefaultInstance;FirebaseFirestore db = FirebaseFirestore.GetInstance(app);유저 데이터 읽어오기private void ReadUserDataFromFirestore(){ DocumentReference docRef = db.Collection("users").Document("GuestID"); docRef.GetSnapshotAsync().ContinueWithOnMainThread(task => { if (task.IsFaulted || task.IsCanceled) { Debug.Log("F..

image