fix:1、UI更换(全部更换完)

This commit is contained in:
2026-04-27 10:11:52 +08:00
parent 7c23d255e6
commit db90a6e485
141 changed files with 994 additions and 1344 deletions
@@ -75,5 +75,6 @@ namespace LoveLegend
public const string ChatUnlockCtrl = "ChatUnlockCtrl";
public const string UnlockLevelNewCtrl = "UnlockLevelNewCtrl";
public const string BroadcastCtrl = "BroadcastCtrl";
public const string EggViewCtrl = "EggViewCtrl";
}
}
@@ -73,5 +73,6 @@ namespace LoveLegend
public const string ChatUnlockModel = "ChatUnlockModel";
public const string UnlockLevelNewModel = "UnlockLevelNewModel";
public const string BroadcastModel = "BroadcastModel";
public const string EggViewModel = "EggViewModel";
}
}
@@ -66,6 +66,7 @@ namespace LoveLegend
moduleManager.AddModel(ModelConst.ChatUnlockModel, new ChatUnlockModel());
moduleManager.AddModel(ModelConst.UnlockLevelNewModel, new UnlockLevelNewModel());
moduleManager.AddModel(ModelConst.BroadcastModel, new BroadcastModel());
moduleManager.AddModel(ModelConst.EggViewModel, new EggViewModel());
}
public static void AutoRegisterUICtrl()
{
@@ -132,6 +133,7 @@ namespace LoveLegend
moduleManager.AddUICtrl(UICtrlConst.ChatUnlockUICtrl, new ChatUnlockUICtrl());
moduleManager.AddUICtrl(UICtrlConst.UnlockLevelNewUICtrl, new UnlockLevelNewUICtrl());
moduleManager.AddUICtrl(UICtrlConst.BroadcastUICtrl, new BroadcastUICtrl());
moduleManager.AddUICtrl(UICtrlConst.EggViewUICtrl, new EggViewUICtrl());
}
public static void AutoRegisterCtrl()
@@ -205,6 +207,7 @@ namespace LoveLegend
moduleManager.AddCtrl(CtrlConst.ChatUnlockCtrl, new ChatUnlockCtrl());
moduleManager.AddCtrl(CtrlConst.UnlockLevelNewCtrl, new UnlockLevelNewCtrl());
moduleManager.AddCtrl(CtrlConst.BroadcastCtrl, new BroadcastCtrl());
moduleManager.AddCtrl(CtrlConst.EggViewCtrl, new EggViewCtrl());
}
public static void AutoRegisterUIType()
@@ -275,6 +278,7 @@ namespace LoveLegend
moduleManager.AddUIType(UIConst.ChatUnlockUI, typeof(ChatUnlockUI));
moduleManager.AddUIType(UIConst.UnlockLevelNewUI, typeof(UnlockLevelNewUI));
moduleManager.AddUIType(UIConst.BroadcastUI, typeof(BroadcastUI));
moduleManager.AddUIType(UIConst.EggViewUI, typeof(EggViewUI));
}
}
}
+1
View File
@@ -72,5 +72,6 @@ namespace LoveLegend
public const string ChatUnlockUI = "ChatUnlockUI";
public const string UnlockLevelNewUI = "UnlockLevelNewUI";
public const string BroadcastUI = "BroadcastUI";
public const string EggViewUI = "EggViewUI";
}
}
@@ -73,5 +73,6 @@ namespace LoveLegend
public const string ChatUnlockUICtrl = "ChatUnlockUICtrl";
public const string UnlockLevelNewUICtrl = "UnlockLevelNewUICtrl";
public const string BroadcastUICtrl = "BroadcastUICtrl";
public const string EggViewUICtrl = "EggViewUICtrl";
}
}