|
@@ -54,5 +54,87 @@ namespace ET
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 灵魂出窍的 Y 轴更新,一定是有目标的法术
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="curPos"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ /*private float UpdateY(Vector3 curPos)
|
|
|
+ {
|
|
|
+ if (this.TargetUnit == null || this.TargetUnit.GameObject == null)
|
|
|
+ {
|
|
|
+ this.TargetPos = this.DefaultTargetPos;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ // 有单位目标.
|
|
|
+ // 目标点为单位的胸部挂载点.
|
|
|
+ // 这里需要高度调整
|
|
|
+ //GameObject gameobj = this.TargetUnit.RUnit.GetTargetPart(RenderUnit.PART_CHEST_BUFF);
|
|
|
+ GameObject gameobj = this.TargetUnit.RUnit.RootTransform.gameObject;
|
|
|
+
|
|
|
+ //this.TargetPos = this.TargetUnit.GameObject.transform.position;
|
|
|
+ this.TargetPos = gameobj.transform.position;
|
|
|
+
|
|
|
+ if (gameobj != null)
|
|
|
+ {
|
|
|
+ this.TargetPos.y = gameobj.transform.position.y;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ float Total = Vector3.Distance(this.mOriginPos, this.TargetPos);
|
|
|
+ if (Total != 0)
|
|
|
+ {
|
|
|
+ float curState = Vector3.Distance(this.mOriginPos, curPos);
|
|
|
+
|
|
|
+ float p = curState / Total;
|
|
|
+ float factor = Mathf.Clamp01(p);
|
|
|
+
|
|
|
+ return Vector3.Lerp(this.mOriginPos, this.TargetPos, factor).y;
|
|
|
+ }
|
|
|
+
|
|
|
+ return curPos.y;
|
|
|
+ }*/
|
|
|
+
|
|
|
+ /*/更新cannon spell的Y
|
|
|
+ private float UpdateCannonPos(Vector3 curPos)
|
|
|
+ {
|
|
|
+ this.TargetPos = this.DefaultTargetPos;
|
|
|
+
|
|
|
+ //施法者都被移除了,还放个毛啊
|
|
|
+ if (this.LauncherUnit == null || this.LauncherUnit.GameObject == null)
|
|
|
+ {
|
|
|
+ return this.TargetPos.y;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ float Total = Vector3.Distance(
|
|
|
+ this.LauncherUnit.GameObject.transform.position,
|
|
|
+ this.TargetPos);
|
|
|
+ if (Total == 0)
|
|
|
+ {
|
|
|
+ return curPos.y;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ float self = Vector3.Distance(
|
|
|
+ this.LauncherUnit.GameObject.transform.position,
|
|
|
+ curPos);
|
|
|
+
|
|
|
+ float factor = Mathf.Clamp01(1 - self / Total);
|
|
|
+
|
|
|
+ if (this.ZSpell.Info.ParabolaHeight != 0)
|
|
|
+ {
|
|
|
+ float sinheight = Mathf.Sin((1 - factor) * Mathf.PI);
|
|
|
+
|
|
|
+ return this.ZSpell.LaunchHeight * factor + sinheight * this.ZSpell.Info.ParabolaHeight + AddHeight;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return this.ZSpell.LaunchHeight * factor + AddHeight;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }*/
|
|
|
}
|
|
|
}
|