Example #1
0
 public baseAttack_2(SlimeAttacker atker) : base(atker)
 {
     type      = AttackActionType.Base_2;
     timeLeft  = atker.timeBaseAttackTot;
     timeCombo = atker.timeBaseAttackLast;
     radius    = atker.radius;
     yOffset   = 0.569f;
 }
Example #2
0
    public SpecialSummer(SlimeAttacker atker, float screenX, float screenY) : base(atker)
    {
        type      = AttackActionType.SpecialSummer;
        timeLeft  = 0.6f;
        timeCombo = 0.6f;

        _sx = screenX;
        _sy = screenY;
    }
Example #3
0
 public SpecialAutumn(SlimeAttacker atker) : base(atker)
 {
     type      = AttackActionType.SpecialAutumn;
     timeLeft  = 1.0f;
     timeCombo = 1.0f;
 }
Example #4
0
 public AttackAction(SlimeAttacker atker)
 {
     m_parent    = atker;
     m_transform = m_parent.transform;
 }
Example #5
0
 public SpecialSpring(SlimeAttacker atker) : base(atker)
 {
     type      = AttackActionType.SpecialSpring;
     timeLeft  = 0.3f;
     timeCombo = 0.3f;
 }