Example #1
0
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
         DontDestroyOnLoad(gameObject);
     }
     else
     {
         Destroy(gameObject);
     }
 }
Example #2
0
 void Start()
 {
     instance       = this;
     sfxAudioSource = GetComponent <AudioSource>();
 }