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
@@ -56,6 +56,7 @@ namespace ChillConnect
public const string PettyAwardCtrl = "PettyAwardCtrl";
public const string StatementViewCtrl = "StatementViewCtrl";
public const string ArrowGameCtrl = "ArrowGameCtrl";
public const string GameAgainCtrl = "GameAgainCtrl";
}
}
@@ -56,6 +56,7 @@ namespace ChillConnect
public const string StatementViewModel = "StatementViewModel";
public const string H5Model = "H5Model";
public const string ArrowGameModel = "ArrowGameModel";
public const string GameAgainModel = "GameAgainModel";
}
}
@@ -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));
}
}
+2 -1
View File
@@ -54,7 +54,8 @@ namespace ChillConnect
public const string NewTaskUI = "NewTaskUI";
public const string PettyAwardUI = "PettyAwardUI";
public const string StatementViewUI = "StatementViewUI";
public const string ArrowGameUI = "ArrowGameUI";
public const string ArrowGameUI = "ArrowGameUI";
public const string GameAgainUI = "GameAgainUI";
}
}
@@ -56,6 +56,7 @@ namespace ChillConnect
public const string PettyAwardUICtrl = "PettyAwardUICtrl";
public const string StatementViewUICtrl = "StatementViewUICtrl";
public const string ArrowGameUICtrl = "ArrowGameUICtrl";
public const string GameAgainUICtrl = "GameAgainUICtrl";
}
}