Browse Source

增加编辑器配置摄像机事件,支持镜头扫射

大爷 1 year ago
parent
commit
2dfcad699c

+ 28 - 0
Unity/Assets/Scripts/Codes/HotfixView/Client/Camera/CameraMgr.cs

@@ -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);
+        }
+    }
+
 }

+ 1 - 0
Unity/Assets/Scripts/Codes/HotfixView/Client/Global/GlobalViewMgr.cs

@@ -15,6 +15,7 @@ namespace ET.Client
             self.RecycleNode = GameObject.Find("/Global/RecycleNode").transform;
 
             self.BattleCamera = GameObject.Find("/Global/BattleCamera").GetComponent<Camera>();
+            CameraMgr.Init();
             //self.UICamera = GameObject.Find("/Global/UICamera").GetComponent<Camera>();
 
             /*var uiContentScale = self.Global.GetComponent<UIContentScaler>();

+ 0 - 7
Unity/Assets/Scripts/Codes/HotfixView/Client/Scene/SceneChangeStart_AddComponent.cs

@@ -29,13 +29,6 @@ namespace ET.Client
 
             //需要先设置战斗ready,不然后塔单位不会生成,扫镜头时看不到塔模型
             scene.GetComponent<ObjectWait>().Notify(new Wait_SceneChangeFinish());
-
-            Vector3 StartPos = new(30, 15, 10);
-            Vector3 EndPos = new(230, 15, 10);
-            CameraMgr.DragMe(StartPos, EndPos, 8, () =>
-            {
-                Log.Debug("camera scroll end");
-            });
         }
     }
 }

+ 16 - 0
Unity/Assets/Scripts/Codes/Model/Client/EventTypeClient.cs

@@ -128,6 +128,22 @@ namespace ET
                 return this;
             }
         }
+        public class CameraEvent
+        {
+            public float MoveSpeedSec = 1f;
+            public int TimeMS = 0;
+            public float X;
+            public float Y;
+            public float Z;
+            public static CameraEvent Static = new();
+            public CameraEvent Clone(float x, float y, float z, int timems, float speed)
+            {
+                X = x; Y = y; Z = z;
+                TimeMS = timems;
+                MoveSpeedSec = speed;
+                return this;
+            }
+        }
     }
 
     //状态指令