简单的升星

This commit is contained in:
DESKTOP-5RP3AKU\Jisol
2023-11-26 03:06:23 +08:00
parent 8e644c583c
commit b33fede03e
22 changed files with 4330 additions and 169 deletions

View File

@@ -20,9 +20,11 @@ export enum GUI{
/** 主页页面 */
MainChat = "MainChat", //主页聊天页面
IntoBattleView = "IntoBattleView", //上阵页面
PetUpStarView = "PetUpStarView", //宠物升星页面
/**游戏模式页面 */
PVPModeMatchView = "PVPModeMatchView", //PVP模式匹配页面
@@ -85,6 +87,16 @@ const UIMainConfig:{ [key: string]: JNLayerInfo; } = {
},
}
//宠物页面
const UIPetConfig:{ [key: string]: JNLayerInfo; } = {
[GUI.PetUpStarView]:{
layer:GLayer.Popup,
uri: "prefab/ui/宠物/宠物升星页面",
anims:BackOutScale,
},
}
//新手引导页面
const UINoviceConfig:{ [key: string]: JNLayerInfo; } = {
@@ -146,6 +158,7 @@ export const UIConfig:{ [key: string]: JNLayerInfo; } = {
...UISystemConfig, //系统页面
...UINoviceConfig, //新手引导页面
...UIMainConfig, //主页面
...UIPetConfig, //宠物页面
...UIGModeConfig, //游戏模式页面
}