Unity---游戏设计模式之单例模式
Posted fflyqaq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity---游戏设计模式之单例模式相关的知识,希望对你有一定的参考价值。
概述参考请看 参考博客
单例模式的使用非常广泛,相信大家在学习设计模式之前,就已经接触过了单例模式。
1、单例模式
C#中单例模式
public class Test
{
private static Test _instance;
public static Test Instance
{
get
{
if (_instance == null)
_instance = new Test();
return _instance;
}
}
}
Unity中单例模式
public class Test : MonoBehaviour
{
public static Test Instance;
private void Awake()
{
Instance = this;
}
}
以上是关于Unity---游戏设计模式之单例模式的主要内容,如果未能解决你的问题,请参考以下文章