首页 > 编程语言 > 详细

unity mono单例

时间:2021-08-12 12:01:26      阅读:12      评论:0      收藏:0      [点我收藏+]

public class SingletonManager<T> : MonoBehaviour where T : MonoBehaviour
{
private static T instance;
public static T GetInstance()
{
if (instance == null)
instance = (T)FindObjectOfType(typeof(T));
return instance;
}

protected virtual void Awake()
{
instance = this as T;
}

protected virtual void OnDestroy()
{
instance = null;
}
}

unity mono单例

原文:https://www.cnblogs.com/tqvdong/p/15131447.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!