上海虹口龙之梦项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

47 lines
1.0 KiB

using UnityEngine;
/// <summary>
/// 单例模式
/// </summary>
/// <typeparam name="T"></typeparam>
public abstract class MonoSingleton<T> : MonoBehaviour where T : MonoSingleton<T>{
private static T m_Instance = null;
//设计阶段 脚本没有挂在物体上
//运行时 需要这个脚本的唯一实例,调用instance
public static T Instance
{
get
{
if( m_Instance == null )
{
m_Instance = GameObject.FindObjectOfType(typeof(T)) as T;
if( m_Instance == null )
{
m_Instance = new GameObject(typeof(T).ToString(), typeof(T)).GetComponent<T>();
m_Instance.Init();
}
}
return m_Instance;
}
}
//设计阶段 脚本挂载物体上
private void Awake()
{
if( m_Instance == null )
{
m_Instance = this as T;
}
}
public virtual void Init(){}
private void OnApplicationQuit()
{
m_Instance = null;
}
}