guodong 1 year ago
parent
commit
5d6c60c09c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      GameClient/Assets/Game/HotUpdate/Views/DressUp/DressUpView.cs

+ 4 - 4
GameClient/Assets/Game/HotUpdate/Views/DressUp/DressUpView.cs

@@ -120,14 +120,14 @@ namespace GFGGame
 
         private void onTouchBegin(EventContext context)
         {
-            LogUtil.LogEditor("onTouchBegin");
+            //LogUtil.LogEditor("onTouchBegin");
             listScrolled = false;
             longPressed = false;
         }
 
         private void OnListScroll(EventContext context)
         {
-            LogUtil.LogEditor("OnListScroll");
+            //LogUtil.LogEditor("OnListScroll");
             listScrolled = true;
         }
 
@@ -307,7 +307,7 @@ namespace GFGGame
 
         private void OnClickPartsListItem(EventContext context)
         {
-            LogUtil.LogEditor("OnClickPartsListItem");
+            //LogUtil.LogEditor("OnClickPartsListItem");
             if (longPressed) return;
             if (ViewManager.isViewOpen(typeof(DressUpItemTipsView).FullName))
             {
@@ -406,7 +406,7 @@ namespace GFGGame
 
         private void OnLongPress(EventContext context)
         {
-            LogUtil.LogEditor($"OnLongPress {listScrolled}");
+            //LogUtil.LogEditor($"OnLongPress {listScrolled}");
             if (listScrolled) return;
             longPressed = true;
             LongPressGesture gesture = (LongPressGesture)context.sender;