diff --git a/Assets/Ino_nerdnavis.txt b/Assets/Ino_nerdnavis.txt index 03e510e3e..c227accc8 100644 --- a/Assets/Ino_nerdnavis.txt +++ b/Assets/Ino_nerdnavis.txt @@ -87,12 +87,7 @@ messageinfo 엄청 느린 버그 상점 - 첫 구매 보너스 - - 기타 금액 UI로 이동 -미션 -BUY_PRODUCT, -BUY_PRODUCT_ALL, -BUY_PAID_COUNT_ACC, diff --git a/Assets/Script/UI/Shop/ShopJewelBuyPopup.cs b/Assets/Script/UI/Shop/ShopJewelBuyPopup.cs index 04edf3717..9fa194d3d 100644 --- a/Assets/Script/UI/Shop/ShopJewelBuyPopup.cs +++ b/Assets/Script/UI/Shop/ShopJewelBuyPopup.cs @@ -29,6 +29,7 @@ public class ShopJewelBuyPopup : BackKeyAdd public void OnClick_Other() { OnClick_Back(); + NewGameUI.Ins.m_ShopUI.Go_Money(); } public void OnClick_Buy() diff --git a/Assets/Script/UI/Shop/ShopUI.cs b/Assets/Script/UI/Shop/ShopUI.cs index 162d87ff3..96df657b0 100644 --- a/Assets/Script/UI/Shop/ShopUI.cs +++ b/Assets/Script/UI/Shop/ShopUI.cs @@ -42,4 +42,12 @@ public class ShopUI : BotMenuBase //shopContents[mainIndex].Set(mainIndex, Tab_Sub.Get_Index()); shopContents.Set(mainIndex, Tab_Sub.Get_Index()); } + + public void Go_Money() + { + var cashdata = table_shopitemlist.Ins.Get_CashData(0); + Tab_Main.Set_Index(cashdata.n_ShopTab); + Tab_Sub.Set_Index(cashdata.n_ShopSubTab); + OnClick_SubTab(); + } } \ No newline at end of file