qa report v2

This commit is contained in:
2026-09-06 21:36:26 +05:30
parent 78592e8d8e
commit 5ac8f92006
37 changed files with 507 additions and 223 deletions
+4 -2
View File
@@ -50,19 +50,21 @@ public class TutorialManagerMainMenu : MonoBehaviour
if(!forceShow){
if(PlayerPrefs.HasKey(TUTORIAL_PREF_KEY)){
tutorialPanel.SetActive(false);
Debug.Log("Tutorial pref key is available, stopping;");
return;
}
if(LoginManager.CurrentUser.rc > 0){
tutorialPanel.SetActive(false);
Debug.Log("User has rc, stopping;");
return;
}
}
tutorialPanel.SetActive(true);
screen1.SetActive(true);
PlayerPrefs.SetInt(TUTORIAL_PREF_KEY, 1);
PlayerPrefs.Save();
}
void OnNext1(){