This commit is contained in:
Ino 2025-08-08 09:00:45 +09:00
parent e72a0aa623
commit 35e477d5a6
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,12 @@ public class BotMenuBase : uScrollViewMgr
{
public MoneyForm[] moneyForms;
public override void Set()
{
base.Set();
LoadMapMgr.Ins.SetActive_Map(false);
}
public void Set_Money(params int[] ids)
{
for (int i = 0; i < moneyForms.Length; i++)
@ -22,5 +28,6 @@ public class BotMenuBase : uScrollViewMgr
{
base.OnClick_Back();
if (MyInfoUI.isIns) MyInfoUI.Ins.Set();
LoadMapMgr.Ins.SetActive_Map(true);
}
}