Example #1
0
 public AIStateWander(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
     //defaults for behavioural values
     DistanceTolerance = 1f;
     CriticalHealthPercentage = 60;
 }
Example #2
0
 public AIStateGetHealth(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
 }
Example #3
0
 public AIStateHide(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
 }
Example #4
0
 public AStateMobile(AStateMachineMobile machine, int id)
 {
     StateMachine = machine;
     ID = id;
 }
Example #5
0
 public AIStateCombat(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
 }