cull(engine-cleanup): pass-8 phase-2 cascade round 3 after GachaUI stub

This commit is contained in:
gamer147
2026-07-03 22:27:45 -04:00
parent 78971adc46
commit 4e49a1236d
11 changed files with 2 additions and 105 deletions

View File

@@ -358,8 +358,6 @@ public class DialogBase : MonoBehaviour
private List<UIPanelAlphaController> _insideObjectUIPanelAlphaControllerList = new List<UIPanelAlphaController>();
private Coroutine _autoCloseCoroutine;
public InputDialog InputDialog { get; set; }
public bool IsCloseByCloseButton { get; private set; }
@@ -1150,15 +1148,6 @@ public class DialogBase : MonoBehaviour
return dialogBase;
}
private IEnumerator AutoCloseCoroutine(float second)
{
yield return new WaitForSeconds(second);
if (dialogNowScene == DialogScene.WAIT)
{
Close();
}
}
public void SetDialogNoClose()
{
SetBackViewToNotCloseDialog();