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
guid: d9c3a35cda8460c45b0f78edf822ab44
guid: 94a6f42addb17924bb1b45c33a07efea
labels:
- gvh
- 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 .none.

View File

@ -1 +1 @@
13
15

View File

@ -6230,7 +6230,7 @@ MonoBehaviour:
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_text: "\uB370\uC774\uD130 \uB85C\uB529\uC911..."
m_text:
m_isRightToLeft: 0
m_fontAsset: {fileID: 11400000, guid: cf1ae75e65a967946b23286a5ffbb812, 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 Coroutine DownloadDataCoroutine = null;
private Coroutine LoadUnlockHuntingImageCoroutine = null;
//private Coroutine DownloadDataCoroutine = null;
//private Coroutine LoadUnlockHuntingImageCoroutine = null;
bool AgeIndicate = true;
bool AgeEnd = false;
@ -225,10 +225,11 @@ public class TitleCanvas : MonoBehaviour
progressbarText.text = "다운로드 하는 중...";
GameManager.Addressable.DownloadData();
if (DownloadDataCoroutine == null)
{
DownloadDataCoroutine = StartCoroutine(UpdateDownloadData());
}
//if (DownloadDataCoroutine == null)
//{
// DownloadDataCoroutine = StartCoroutine(UpdateDownloadData());
//}
StartCoroutine(UpdateDownloadData());
}
private void LoadUnlockHuntingImage()
@ -242,10 +243,11 @@ public class TitleCanvas : MonoBehaviour
GameManager.BGDatabase.OnCompleteLoadHuntingImage += OnSucceedLoadUnlockHuntingImage;
if (LoadUnlockHuntingImageCoroutine == null)
{
LoadUnlockHuntingImageCoroutine = StartCoroutine(UpdateLoadUnlockHuntingImage());
}
//if (LoadUnlockHuntingImageCoroutine == null)
//{
// LoadUnlockHuntingImageCoroutine = StartCoroutine(UpdateLoadUnlockHuntingImage());
//}
StartCoroutine(UpdateLoadUnlockHuntingImage());
}
IEnumerator Check_GameManager()
@ -323,10 +325,10 @@ public class TitleCanvas : MonoBehaviour
}
else
{
if (LoadUnlockHuntingImageCoroutine != null)
{
StopCoroutine(LoadUnlockHuntingImageCoroutine);
}
//if (LoadUnlockHuntingImageCoroutine != null)
//{
// StopCoroutine(LoadUnlockHuntingImageCoroutine);
//}
NextState();
StartCurrentState();
@ -380,10 +382,10 @@ public class TitleCanvas : MonoBehaviour
private void OnDownloadFinished(bool completed)
{
if (DownloadDataCoroutine != null)
{
StopCoroutine(DownloadDataCoroutine);
}
//if (DownloadDataCoroutine != null)
//{
// StopCoroutine(DownloadDataCoroutine);
//}
if (completed == true)
{