瀏覽代碼

引导日志

zhaoyang 3 年之前
父節點
當前提交
8c6601355d

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Controller/GuideController.cs

@@ -137,7 +137,7 @@ namespace GFGGame
             {
                 return;
             }
-
+            LogServerHelper.SendNodeLog(GuideDataManager.currentGuideId * 100 + 1);
             ViewManager.Show(ViewName.GUIDE_VIEW, new List<object> { target, guideStr, yTxt, isOptionalGuide, devWidth, devHeight, guideId, index, showAni, showEffect });
         }
         public static bool TryCompleteGuideIndex(int guideId, int index)

+ 2 - 0
GameClient/Assets/Game/HotUpdate/Data/GuideDataManager.cs

@@ -53,6 +53,8 @@ namespace GFGGame
             }
             if (currentGuideId == guideId)
             {
+                LogServerHelper.SendNodeLog(GuideDataManager.currentGuideId * 100 + 2);
+
                 return await StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_GUIDE + guideId, 1);
             }
             return false;