Example #1
0
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
     else
     {
         Destroy(gameObject);
     }
 }
Example #2
0
 public void Awake()
 {
     Instance = this;
 }
 private void Start()
 {
     killCount = GameObject.Find("ScoreManager").GetComponent <KillCountManager>();
 }