Ejemplo n.º 1
0
 private void Awake()
 {
     if (instance != null)
     {
         Debug.LogWarning("Multiple Instances of AIShootingManager");
         return;
     }
     instance = this;
 }
Ejemplo n.º 2
0
 // Start is called before the first frame update
 void Start()
 {
     manager       = AIShootingManager.instance;
     remainingClip = weapon.clipSize;
 }