|
@@ -27,8 +27,8 @@ namespace Fort23.Mono
|
|
|
|
|
|
private void Init()
|
|
|
{
|
|
|
- IsShowAppBar = true;
|
|
|
- isAddStack = false;
|
|
|
+ IsShowAppBar = false;
|
|
|
+ isAddStack = true;
|
|
|
}
|
|
|
|
|
|
protected override void AddEvent()
|
|
@@ -455,7 +455,7 @@ namespace Fort23.Mono
|
|
|
|
|
|
public async static CTask<HeroBreakthroughPanel> OpenPanel()
|
|
|
{
|
|
|
- HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isFocus: false, isShowBG: true);
|
|
|
+ HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isShowBG: true);
|
|
|
heroBreakthroughPanel.CustomInit();
|
|
|
return heroBreakthroughPanel;
|
|
|
}
|
|
@@ -464,7 +464,7 @@ namespace Fort23.Mono
|
|
|
//渡劫预览
|
|
|
public async static CTask<HeroBreakthroughPanel> OpenPanel1(HeroInfo heroInfo1)
|
|
|
{
|
|
|
- HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isFocus: false, isShowBG: true);
|
|
|
+ HeroBreakthroughPanel heroBreakthroughPanel = await UIManager.Instance.LoadAndOpenPanel<HeroBreakthroughPanel>(null, UILayer.Top, isShowBG: true);
|
|
|
heroBreakthroughPanel.CustomInit(heroInfo1);
|
|
|
return heroBreakthroughPanel;
|
|
|
}
|