From b0d951c6b3a3b417fb0d4611c8bbf83168951efe Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期二, 16 四月 2019 21:16:52 +0800
Subject: [PATCH] 6530 【2.0】【开发】灵宠、坐骑拍品显示专属的拍品TIPS

---
 UI/Common/UI3DTreasureExhibition.cs |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/UI/Common/UI3DTreasureExhibition.cs b/UI/Common/UI3DTreasureExhibition.cs
index c13cca3..d8fa61e 100644
--- a/UI/Common/UI3DTreasureExhibition.cs
+++ b/UI/Common/UI3DTreasureExhibition.cs
@@ -42,7 +42,7 @@
             }
         }
 
-        public void BeginShowTreasure(int _treasureId, RawImage _rawImage)
+        public void ShowTreasure(int _treasureId, RawImage _rawImage)
         {
             var instance = UI3DModelFactory.LoadUITreasure(_treasureId);
             if (instance == null)
@@ -50,7 +50,7 @@
                 return;
             }
 
-            StopShow();
+            Stop();
 
             m_ShowCamera.enabled = true;
             m_TreasureId = _treasureId;
@@ -81,7 +81,7 @@
             }
         }
 
-        public void BeginShowGodWeapon(int _type, RawImage _rawImage)
+        public void ShowGodWeapon(int _type, RawImage _rawImage)
         {
             var instance = UI3DModelFactory.LoadUIGodWeapon(_type);
             if (instance == null)
@@ -89,7 +89,7 @@
                 return;
             }
 
-            StopShow();
+            Stop();
 
             m_ShowCamera.enabled = true;
             m_GodWeaponType = _type;
@@ -104,7 +104,7 @@
             }
         }
 
-        public void StopShow()
+        public void Stop()
         {
             m_ShowCamera.enabled = false;
             if (effect != null)

--
Gitblit v1.8.0