fix:1、玩法创建,移动,碰撞检测基本完成 2、添加结算复活界面逻辑

This commit is contained in:
2026-06-13 15:34:00 +08:00
parent 2d5012e37e
commit 9b468b835f
38 changed files with 1208 additions and 752 deletions
@@ -59,6 +59,8 @@ namespace ChillConnect
moduleManager.AddModel(ModelConst.StatementViewModel, new StatementViewModel());
moduleManager.AddModel(ModelConst.H5Model, new H5Model());
moduleManager.AddModel(ModelConst.ArrowGameModel, new ArrowGameModel());
moduleManager.AddModel(ModelConst.GameAgainModel, new GameAgainModel());
}
public static void AutoRegisterUICtrl()
@@ -115,6 +117,8 @@ namespace ChillConnect
moduleManager.AddUICtrl(UICtrlConst.StatementViewUICtrl, new StatementViewUICtrl());
moduleManager.AddUICtrl(UICtrlConst.H5UICtrl, new H5UICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowGameUICtrl, new ArrowGameUICtrl());
moduleManager.AddUICtrl(UICtrlConst.GameAgainUICtrl, new GameAgainUICtrl());
}
@@ -174,6 +178,7 @@ namespace ChillConnect
moduleManager.AddCtrl(CtrlConst.StatementViewCtrl, new StatementViewCtrl());
moduleManager.AddCtrl(CtrlConst.H5Ctrl, new H5Ctrl());
moduleManager.AddCtrl(CtrlConst.ArrowGameCtrl, new ArrowGameCtrl());
moduleManager.AddCtrl(CtrlConst.GameAgainCtrl, new GameAgainCtrl());
}
@@ -232,6 +237,7 @@ namespace ChillConnect
moduleManager.AddUIType(UIConst.StatementViewUI, typeof(StatementViewUI));
moduleManager.AddUIType(UIConst.H5UI, typeof(H5UI));
moduleManager.AddUIType(UIConst.ArrowGameUI, typeof(ArrowGameUI));
moduleManager.AddUIType(UIConst.GameAgainUI, typeof(GameAgainUI));
}
}