Example #1
0
 // Constructors
 public HideState(Behaviour_Lizard lizard) : base(lizard)
 {
 }
Example #2
0
 // Constructors
 public TeleportState(Behaviour_Lizard lizard) : base(lizard)
 {
     currentTime = 0f; isFading = true; hasTeleported = false;
 }
Example #3
0
 // Constructors
 public ShootState(Behaviour_Lizard lizard) : base(lizard)
 {
 }
Example #4
0
 public IdleState(Behaviour_Lizard lizard, float time, int next) : base(lizard)
 {
     idleTime = time; nextState = next;
 }
Example #5
0
 // Constructors
 public IdleState(Behaviour_Lizard lizard, float time) : base(lizard)
 {
     idleTime = time; nextState = -1;
 }
Example #6
0
 public LizardState(Behaviour_Lizard lizard)
 {
     _lizard = lizard;
 }