Added newtonsoft package. Added dotween package. Updated game scene with PopupManager, GameBootLoader. Added necessary UI scripts.
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using UnityEngine;
|
|
|
|
public class GameBootLoader : BootLoader
|
|
{
|
|
[SerializeField] private GameObject[] baseObjects;
|
|
// [SerializeField] private BaseSO[] scriptables;
|
|
|
|
private bool hasInitializedScriptables = false;
|
|
|
|
protected override void InitBootLoaders()
|
|
{
|
|
IBootLoader bootLoader = null;
|
|
|
|
foreach (GameObject loader in baseObjects)
|
|
{
|
|
if (GetLoader<IBootLoader>(loader.transform, out bootLoader))
|
|
{
|
|
bootLoader.Initialize();
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void InitializeData()
|
|
{
|
|
InitializeScriptablesData();
|
|
|
|
IDataLoader dataLoader = null;
|
|
foreach (GameObject loader in baseObjects)
|
|
{
|
|
if (GetLoader<IDataLoader>(loader.transform, out dataLoader))
|
|
{
|
|
dataLoader.InitializeData();
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void Start()
|
|
{
|
|
base.Start();
|
|
}
|
|
|
|
private void InitializeScriptablesData()
|
|
{
|
|
// if (!hasInitializedScriptables)
|
|
// {
|
|
// foreach (BaseSO scriptableObject in scriptables)
|
|
// {
|
|
// scriptableObject.InitData();
|
|
// }
|
|
|
|
// hasInitializedScriptables = true;
|
|
// }
|
|
}
|
|
}
|