Esempio n. 1
0
        protected void Awake()
        {
            if (_instance != null)
            {
                throw new Exception("Tentative de création d'une autre instance de Gabriel alors que c'est un singleton.");
            }
            _instance = this;

            hasBeenhit = false;
            cara       = GetComponent <Caracteristic>();
        }
Esempio n. 2
0
 protected void OnDestroy()
 {
     _instance = null;
 }