瀏覽代碼

修复下一局游戏时,在开始前添加的单位看不到

大爷 1 年之前
父節點
當前提交
3054b383d8

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

@@ -22,26 +22,29 @@ namespace ET.Client
             MainCamera.transform.SetPositionAndRotation(new Vector3(90, 35, 26.6f), Quaternion.Euler(20, 20, 0));
             MainCamera.fieldOfView = 60;
 
-            Director = MainCamera.GetComponent<PlayableDirector>();
             if (Director == null)
             {
-                Log.Error("Not Found Camera PlayableDirector");
-                return;
-            }
-            if (Name_BindObj.Count == 0)
-            {
-                foreach (var bind in Director.playableAsset.outputs)
+                Director = MainCamera.GetComponent<PlayableDirector>();
+                if (Director == null)
                 {
-                    var obj = Director.GetGenericBinding(bind.sourceObject);
-                    Name_BindObj.Add(bind.streamName, obj);
+                    Log.Error("Not Found Camera PlayableDirector");
+                    return;
+                }
+                if (Name_BindObj.Count == 0)
+                {
+                    foreach (var bind in Director.playableAsset.outputs)
+                    {
+                        var obj = Director.GetGenericBinding(bind.sourceObject);
+                        Name_BindObj.Add(bind.streamName, obj);
+                    }
                 }
-            }
 
-            Director.stopped += (pd) =>
-            {
-                StopCallback?.Invoke();
-                StopCallback = null;
-            };
+                Director.stopped += (pd) =>
+                {
+                    StopCallback?.Invoke();
+                    StopCallback = null;
+                };
+            }
         }
 
         [Event]

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

@@ -37,6 +37,7 @@ namespace ET.Client
         public void ReOpenGame()
         {
             ModelViewComponent.Instance.IsHideNormalName = false;
+            CameraMgr.Init();
         }
     }
 }