This commit is contained in:
Ino 2025-09-19 14:55:58 +09:00
parent 1dbb1fce7f
commit 6c52175326
5 changed files with 23 additions and 23 deletions

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: d9c3a35cda8460c45b0f78edf822ab44 guid: 94a6f42addb17924bb1b45c33a07efea
labels: labels:
- gvh - gvh
- gvh_version-9.5.0 - gvh_version-9.5.0

View File

@ -33,8 +33,6 @@ ibk 앱에서 휴대폰 본인 인증 시 휴대폰 번호 변경하는 방법
실제 라이브 시 게등위 관련 주석 처리 필요 실제 라이브 시 게등위 관련 주석 처리 필요
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
내 돈이 - 가 됨
파이어 베이스 디버그 뷰 파이어 베이스 디버그 뷰
adb shell setprop debug.firebase.analytics.app com.fgb.randomgfgostop adb shell setprop debug.firebase.analytics.app com.fgb.randomgfgostop
adb shell setprop debug.firebase.analytics.app .none. adb shell setprop debug.firebase.analytics.app .none.

View File

@ -1 +1 @@
13 15

View File

@ -6230,7 +6230,7 @@ MonoBehaviour:
m_OnCullStateChanged: m_OnCullStateChanged:
m_PersistentCalls: m_PersistentCalls:
m_Calls: [] m_Calls: []
m_text: "\uB370\uC774\uD130 \uB85C\uB529\uC911..." m_text:
m_isRightToLeft: 0 m_isRightToLeft: 0
m_fontAsset: {fileID: 11400000, guid: cf1ae75e65a967946b23286a5ffbb812, type: 2} m_fontAsset: {fileID: 11400000, guid: cf1ae75e65a967946b23286a5ffbb812, type: 2}
m_sharedMaterial: {fileID: 2100000, guid: 1cd9f54883d04fa4a8273aaf06ef64e9, type: 2} m_sharedMaterial: {fileID: 2100000, guid: 1cd9f54883d04fa4a8273aaf06ef64e9, type: 2}

View File

@ -28,8 +28,8 @@ public class TitleCanvas : MonoBehaviour
private TitleCanvasState state = TitleCanvasState.CheckInternet; private TitleCanvasState state = TitleCanvasState.CheckInternet;
private Coroutine DownloadDataCoroutine = null; //private Coroutine DownloadDataCoroutine = null;
private Coroutine LoadUnlockHuntingImageCoroutine = null; //private Coroutine LoadUnlockHuntingImageCoroutine = null;
bool AgeIndicate = true; bool AgeIndicate = true;
bool AgeEnd = false; bool AgeEnd = false;
@ -225,10 +225,11 @@ public class TitleCanvas : MonoBehaviour
progressbarText.text = "다운로드 하는 중..."; progressbarText.text = "다운로드 하는 중...";
GameManager.Addressable.DownloadData(); GameManager.Addressable.DownloadData();
if (DownloadDataCoroutine == null) //if (DownloadDataCoroutine == null)
{ //{
DownloadDataCoroutine = StartCoroutine(UpdateDownloadData()); // DownloadDataCoroutine = StartCoroutine(UpdateDownloadData());
} //}
StartCoroutine(UpdateDownloadData());
} }
private void LoadUnlockHuntingImage() private void LoadUnlockHuntingImage()
@ -242,10 +243,11 @@ public class TitleCanvas : MonoBehaviour
GameManager.BGDatabase.OnCompleteLoadHuntingImage += OnSucceedLoadUnlockHuntingImage; GameManager.BGDatabase.OnCompleteLoadHuntingImage += OnSucceedLoadUnlockHuntingImage;
if (LoadUnlockHuntingImageCoroutine == null) //if (LoadUnlockHuntingImageCoroutine == null)
{ //{
LoadUnlockHuntingImageCoroutine = StartCoroutine(UpdateLoadUnlockHuntingImage()); // LoadUnlockHuntingImageCoroutine = StartCoroutine(UpdateLoadUnlockHuntingImage());
} //}
StartCoroutine(UpdateLoadUnlockHuntingImage());
} }
IEnumerator Check_GameManager() IEnumerator Check_GameManager()
@ -323,10 +325,10 @@ public class TitleCanvas : MonoBehaviour
} }
else else
{ {
if (LoadUnlockHuntingImageCoroutine != null) //if (LoadUnlockHuntingImageCoroutine != null)
{ //{
StopCoroutine(LoadUnlockHuntingImageCoroutine); // StopCoroutine(LoadUnlockHuntingImageCoroutine);
} //}
NextState(); NextState();
StartCurrentState(); StartCurrentState();
@ -380,10 +382,10 @@ public class TitleCanvas : MonoBehaviour
private void OnDownloadFinished(bool completed) private void OnDownloadFinished(bool completed)
{ {
if (DownloadDataCoroutine != null) //if (DownloadDataCoroutine != null)
{ //{
StopCoroutine(DownloadDataCoroutine); // StopCoroutine(DownloadDataCoroutine);
} //}
if (completed == true) if (completed == true)
{ {