制作于2017.12.14
private static GameController _instance; public static GameController Instance { get { return _instance; } }
单例模式 让其他脚本获取这个脚本 使用它的成员
其中_instance是在Awake赋值
_instance=this
鱼让它