This commit is contained in:
PC-20230316NUNE\Administrator
2024-01-17 00:05:44 +08:00
parent 68e0f81616
commit 8ad2313502
57 changed files with 12231 additions and 2286 deletions

View File

@@ -25,6 +25,9 @@ export enum GUI{
MainOnHookView = "MainOnHookView", //挂机弹窗
MapSelectView = "MapSelectView", //地图选择页面
/** 副本 */
DungeonView = "DungeonView", //副本页面
/**宠物 */
PetUpStarView = "PetUpStarView", //宠物升星页面
@@ -158,6 +161,15 @@ const UINoviceConfig:{ [key: string]: JNLayerInfo; } = {
}
//副本页面
const UIDungeonConfig:{ [key: string]: JNLayerInfo; } = {
[GUI.DungeonView]:{
layer:GLayer.Popup,
uri: "prefab/ui/副本页面/副本页面",
anims:BackOutScale
}
}
//游戏模式页面
const UIGModeConfig:{ [key: string]: JNLayerInfo; } = {
@@ -214,6 +226,7 @@ export const UIConfig:{ [key: string]: JNLayerInfo; } = {
...UINoviceConfig, //新手引导页面
...UIMainConfig, //主页面
...UIPetConfig, //宠物页面
...UIDungeonConfig, //副本页面
...UIGModeConfig, //游戏模式页面
}