Browse Source

Merge remote-tracking branch 'origin/master'

johnclot69 1 year ago
parent
commit
d4b1722958
1 changed files with 15 additions and 1 deletions
  1. 15 1
      Unity/Assets/Scripts/Codes/HotfixView/Client/Camera/CameraMgr.cs

+ 15 - 1
Unity/Assets/Scripts/Codes/HotfixView/Client/Camera/CameraMgr.cs

@@ -49,14 +49,28 @@ namespace ET.Client
         {
             protected override async ETTask OnEvent(CameraPlaybleEvent a)
             {
+                bool flag = GlobalViewMgr.Instance.HeadbarView.visible;
+                if (flag)
+                {
+                    GlobalViewMgr.Instance.HeadbarView.visible = false;
+                }
                 await PlayTimeline(a.Playable, () =>
                 {
-                    if(a.Playable == "Camera1_2")
+                    if (flag)
+                    {
+                        GlobalViewMgr.Instance.HeadbarView.visible = true;
+                    }
+
+                    if (a.Playable == "Camera1_2")
                     {
+                        var light = GameObject.Find("/Light");
+                        light.transform.rotation = Quaternion.Euler(0, 225, 0);
                         EventSystem.Instance.Publish(BattleFunc.Clone((int)BattleFunc.FUNC.Start2));
                     }
                     else if (a.Playable == "Camera2_3")
                     {
+                        var light = GameObject.Find("/Light");
+                        light.transform.rotation = Quaternion.Euler(0, 178, 0);
                         EventSystem.Instance.Publish(BattleFunc.Clone((int)BattleFunc.FUNC.Start3));
                     }
                 });