|
@@ -1,4 +1,5 @@
|
|
|
using DG.Tweening;
|
|
|
+using ET.EventType;
|
|
|
using UnityEngine;
|
|
|
|
|
|
namespace ET.Client
|
|
@@ -6,6 +7,13 @@ namespace ET.Client
|
|
|
[FriendOfAttribute(typeof(ET.Client.GlobalViewComponent))]
|
|
|
public static class CameraMgr
|
|
|
{
|
|
|
+ public static void Init()
|
|
|
+ {
|
|
|
+ var camera = GlobalViewComponent.Instance.BattleCamera;
|
|
|
+ camera.transform.position = new Vector3(30, 45, -60);
|
|
|
+ camera.fieldOfView = 70;
|
|
|
+ }
|
|
|
+
|
|
|
//相机跟随主角
|
|
|
public static void FollowMe(Vector3 pos)
|
|
|
{
|
|
@@ -47,4 +55,24 @@ namespace ET.Client
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ [Event(SceneType.None)]
|
|
|
+ [FriendOfAttribute(typeof(ET.Client.GlobalViewComponent))]
|
|
|
+ public class CameraEventHandler : BEvent<EventType.CameraEvent>
|
|
|
+ {
|
|
|
+ public override void OnEvent(CameraEvent args)
|
|
|
+ {
|
|
|
+ var endpos = new Vector3(args.X, args.Y, args.Z);
|
|
|
+ float time = (float)args.TimeMS / 1000;
|
|
|
+ Transform trans = GlobalViewComponent.Instance.BattleCamera.transform;
|
|
|
+
|
|
|
+ if (args.MoveSpeedSec > 0.0001 && time < 0.01)
|
|
|
+ {
|
|
|
+ var dis = Vector3.Distance(trans.position, endpos);
|
|
|
+ time = dis / args.MoveSpeedSec;
|
|
|
+ }
|
|
|
+ trans.DOMove(endpos, time);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|