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