기타 금액 UI로 이동

This commit is contained in:
Ino 2025-04-28 07:59:23 +09:00
parent 11ae7830d4
commit fe35ff69be
3 changed files with 9 additions and 5 deletions

View File

@ -87,12 +87,7 @@ messageinfo 엄청 느린 버그
상점
- 첫 구매 보너스
- 기타 금액 UI로 이동
미션
BUY_PRODUCT,
BUY_PRODUCT_ALL,
BUY_PAID_COUNT_ACC,

View File

@ -29,6 +29,7 @@ public class ShopJewelBuyPopup : BackKeyAdd
public void OnClick_Other()
{
OnClick_Back();
NewGameUI.Ins.m_ShopUI.Go_Money();
}
public void OnClick_Buy()

View File

@ -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();
}
}