mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
39 lines
868 B
C#
39 lines
868 B
C#
using UnityEngine;
|
|
|
|
namespace Fie.Manager {
|
|
public class FieManagerBehaviour<T> : FieManagerBase where T : FieManagerBase {
|
|
[SerializeField]
|
|
private bool _isAutoStartUp;
|
|
|
|
private static T instance;
|
|
|
|
public static T I {
|
|
get {
|
|
if (instance != null && instance.isDestroyed) {
|
|
instance = null;
|
|
}
|
|
if (instance == null)
|
|
{
|
|
instance = UnityEngine.Object.FindObjectOfType<T>();
|
|
if (instance == null || instance.isDestroyed) {
|
|
GameObject gameObject = new GameObject();
|
|
UnityEngine.Object.DontDestroyOnLoad(gameObject);
|
|
instance = gameObject.AddComponent<T>();
|
|
gameObject.name = instance.GetType().Name;
|
|
}
|
|
FieManagerFactory.I.AddManager(instance);
|
|
}
|
|
return instance;
|
|
}
|
|
set {
|
|
instance = value;
|
|
}
|
|
}
|
|
|
|
private void Start() {
|
|
if (_isAutoStartUp) {
|
|
I.StartUp();
|
|
}
|
|
}
|
|
}
|
|
}
|