提交项目

This commit is contained in:
2026-06-15 11:34:31 +08:00
commit 43d6c0125d
5698 changed files with 1236396 additions and 0 deletions
@@ -0,0 +1,55 @@
using BingoBrain.Core;
using FGUI.ABigImg;
namespace BingoBrain
{
public class BottomUI : BaseUI
{
private BottomUICtrl ctrl;
private BottomModel model;
private com_mainbg ui;
public BottomUI(BottomUICtrl ctrl) : base(ctrl)
{
uiName = UIConst.BottomUI;
this.ctrl = ctrl;
}
protected override void SetUIInfo(UIInfo uiInfo)
{
uiInfo.packageName = "ABigImg";
uiInfo.assetName = "com_mainbg";
uiInfo.layerType = UILayerType.Background;
uiInfo.isNeedOpenAnim = false;
uiInfo.isNeedCloseAnim = true;
uiInfo.isNeedUIMask = false;
}
#region
protected override void OnInit()
{
}
protected override void OnClose()
{
GlobalHarmony.Out(ui);
}
protected override void OnBind()
{
ui = baseUI as com_mainbg;
}
protected override void OnOpenBefore(object args)
{
}
protected override void OnOpen(object args)
{
GlobalHarmony.In(ui);
}
#endregion
}
}