|
@@ -7,6 +7,7 @@ using System;
|
|
|
using System.Xml;
|
|
|
using System.Collections;
|
|
|
using System.Collections.Generic;
|
|
|
+using UnityEngine.UI;
|
|
|
|
|
|
public class Initializer : MonoBehaviour
|
|
|
{
|
|
@@ -70,6 +71,7 @@ public class Initializer : MonoBehaviour
|
|
|
|
|
|
public static void Initialize()
|
|
|
{
|
|
|
+
|
|
|
ManaTutorial.TutorialA = ManaData.GetPlayerBool("TutorialA");
|
|
|
ManaTutorial.TutorialB_ = ManaData.GetPlayerBool("TutorialB");
|
|
|
ManaTutorial.TutorialC_ = ManaData.GetPlayerBool("TutorialC");
|
|
@@ -82,21 +84,25 @@ public class Initializer : MonoBehaviour
|
|
|
RegistList[i].Instantiate();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
for (int i = 0; i < RegistList.Count; i++)
|
|
|
{
|
|
|
RegistList[i].RegistReference();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
for (int i = 0; i < RegistList.Count; i++)
|
|
|
{
|
|
|
RegistList[i].RegistValueA();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
for (int i = 0; i < RegistList.Count; i++)
|
|
|
{
|
|
|
RegistList[i].RegistValueB();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
for (int i = 0; i < RegistList.Count; i++)
|
|
|
{
|
|
|
RegistList[i].RegistValueC();
|
|
@@ -104,6 +110,7 @@ public class Initializer : MonoBehaviour
|
|
|
RegistList[i].enabled = true;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
Complete = true;
|
|
|
|
|
|
ManaCenter.LoginCallbackInitial(new JsonData());
|