Esempio n. 1
0
 public AvoidBullets(JoshAI ai, float weight) : base(ai, weight)
 {
 }
Esempio n. 2
0
 public MovementRule(JoshAI ai, float weight)
 {
     this.ai     = ai;
     this.weight = weight;
 }
Esempio n. 3
0
 public AvoidOtherPlayerAttacks(JoshAI ai, float weight) : base(ai, weight)
 {
     otherShip = GameManager.S.OtherPlayerShip(ai.thisShip);
 }
Esempio n. 4
0
 public SeekHealthPack(JoshAI ai, float weight) : base(ai, weight)
 {
 }
Esempio n. 5
0
 public AvoidBorders(JoshAI ai, float weight) : base(ai, weight)
 {
 }
Esempio n. 6
0
 public MoveTowardsRandTarget(JoshAI ai, float weight) : base(ai, weight)
 {
     curTarget = ai.position;
     ai.StartCoroutine(FindRandomTarget());
 }