fix:1、添加兑换code界面。2、更改单双指的禁用和开启(打开其他界面时)

This commit is contained in:
2026-06-24 11:22:55 +08:00
parent f0f102fe4c
commit 65a797d384
36 changed files with 341 additions and 28 deletions
@@ -59,6 +59,7 @@ namespace ChillConnect
public const string GameAgainCtrl = "GameAgainCtrl";
public const string ArrowThemeCtrl = "ArrowThemeCtrl";
public const string ArrowTipsCtrl = "ArrowTipsCtrl";
public const string RedeemCodeCtrl = "RedeemCodeCtrl";
}
}
@@ -59,6 +59,7 @@ namespace ChillConnect
public const string GameAgainModel = "GameAgainModel";
public const string ArrowThemeModel = "ArrowThemeModel";
public const string ArrowTipsModel = "ArrowTipsModel";
public const string RedeemCodeModel = "RedeemCodeModel";
}
}
@@ -62,6 +62,7 @@ namespace ChillConnect
moduleManager.AddModel(ModelConst.GameAgainModel, new GameAgainModel());
moduleManager.AddModel(ModelConst.ArrowThemeModel, new ArrowThemeModel());
moduleManager.AddModel(ModelConst.ArrowTipsModel, new ArrowTipsModel());
moduleManager.AddModel(ModelConst.RedeemCodeModel, new RedeemCodeModel());
}
@@ -122,6 +123,7 @@ namespace ChillConnect
moduleManager.AddUICtrl(UICtrlConst.GameAgainUICtrl, new GameAgainUICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowThemeUICtrl, new ArrowThemeUICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowTipsUICtrl, new ArrowTipsUICtrl());
moduleManager.AddUICtrl(UICtrlConst.RedeemCodeUICtrl, new RedeemCodeUICtrl());
@@ -185,6 +187,7 @@ namespace ChillConnect
moduleManager.AddCtrl(CtrlConst.GameAgainCtrl, new GameAgainCtrl());
moduleManager.AddCtrl(CtrlConst.ArrowThemeCtrl, new ArrowThemeCtrl());
moduleManager.AddCtrl(CtrlConst.ArrowTipsCtrl, new ArrowTipsCtrl());
moduleManager.AddCtrl(CtrlConst.RedeemCodeCtrl, new RedeemCodeCtrl());
}
@@ -246,6 +249,7 @@ namespace ChillConnect
moduleManager.AddUIType(UIConst.GameAgainUI, typeof(GameAgainUI));
moduleManager.AddUIType(UIConst.ArrowThemeUI, typeof(ArrowThemeUI));
moduleManager.AddUIType(UIConst.ArrowTipsUI, typeof(ArrowTipsUI));
moduleManager.AddUIType(UIConst.RedeemCodeUI, typeof(RedeemCodeUI));
}
}
+1
View File
@@ -58,6 +58,7 @@ namespace ChillConnect
public const string GameAgainUI = "GameAgainUI";
public const string ArrowThemeUI = "ArrowThemeUI";
public const string ArrowTipsUI = "ArrowTipsUI";
public const string RedeemCodeUI = "RedeemCodeUI";
}
}
@@ -59,6 +59,7 @@ namespace ChillConnect
public const string GameAgainUICtrl = "GameAgainUICtrl";
public const string ArrowThemeUICtrl = "ArrowThemeUICtrl";
public const string ArrowTipsUICtrl = "ArrowTipsUICtrl";
public const string RedeemCodeUICtrl = "RedeemCodeUICtrl";
}
}