Problem Firestore의 콜백에서 GameObject의 SetActive()를 하면 먹통이 된다. 여기서 호출한 함수들도 마찬가지. DocumentReference docRef = db.Collection("cities").Document("LA"); docRef.GetSnapshotAsync().ContinueWith((task) => { var snapshot = task.Result; panel.SetActive(true); }); Solution DocumentReference docRef = db.Collection("cities").Document("LA"); docRef.GetSnapshotAsync().ContinueWithOnMainThread((task) => { var sna..