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