Beispiel #1
0
 public void setEnemyOnFace(Googoo enemy, Vector3 deathRay)
 {
     if (enemy != null)
     {
         this.enemy = enemy;
         this.enemyOnFace = true;
         this.deathRay = deathRay;
     }
 }
Beispiel #2
0
 public void removeEnemyOnFace()
 {
     enemyOnFace = false;
     this.enemy = null;
 }