...
This commit is contained in:
parent
1dbb1fce7f
commit
6c52175326
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: d9c3a35cda8460c45b0f78edf822ab44
|
||||
guid: 94a6f42addb17924bb1b45c33a07efea
|
||||
labels:
|
||||
- gvh
|
||||
- gvh_version-9.5.0
|
||||
|
|
|
|||
|
|
@ -33,8 +33,6 @@ ibk 앱에서 휴대폰 본인 인증 시 휴대폰 번호 변경하는 방법
|
|||
실제 라이브 시 게등위 관련 주석 처리 필요
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
내 돈이 - 가 됨
|
||||
|
||||
파이어 베이스 디버그 뷰
|
||||
adb shell setprop debug.firebase.analytics.app com.fgb.randomgfgostop
|
||||
adb shell setprop debug.firebase.analytics.app .none.
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
13
|
||||
15
|
||||
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue