Exemplo n.º 1
0
 public AIActionClip(TargetSelectReference targetSelectRefelence, SelectingOrder selectingOrder, float minValue, float maxValue, float minRange, float maxRange, string useSkillId)
 {
     this._targetSelectRerefence = targetSelectRefelence;
     this._selectingOrder        = selectingOrder;
     this._minValue   = minValue;
     this._maxValue   = maxValue;
     this._minRange   = minRange;
     this._maxRange   = maxRange;
     this._useSkillId = useSkillId;
 }
Exemplo n.º 2
0
 public AIActionClip()
 {
     this._targetSelectRerefence = TargetSelectReference.Hp;
     this._selectingOrder        = SelectingOrder.HighAndHave;
     this._minValue   = 0f;
     this._maxValue   = 1f;
     this._minRange   = 0f;
     this._maxRange   = 1f;
     this._useSkillId = string.Empty;
 }