1906 lines
48 KiB
JavaScript
1906 lines
48 KiB
JavaScript
"use strict";
|
|
cc._RF.push(module, '78047ncoNRB9qRcIdbgpP3f', 'bridge.panels');
|
|
// Scripts/zbridge/ui/bridge.panels.js
|
|
|
|
"use strict";
|
|
|
|
/******************************************************************
|
|
*
|
|
* 桥接界面简化操作
|
|
*
|
|
******************************************************************/
|
|
|
|
var BridgeView = require("bridge.view");
|
|
var _require = require("define"),
|
|
SCENE_TAG = _require.SCENE_TAG;
|
|
|
|
// 界面定义
|
|
var PANELS = {
|
|
// ============================================================
|
|
// 场景
|
|
// ============================================================
|
|
|
|
// 热更场景
|
|
"SceneHotUpdate": {
|
|
path: "prefab/login/scene_update",
|
|
tag: SCENE_TAG.scene
|
|
},
|
|
// 启动动画场景
|
|
"SceneLaunchAnim": {
|
|
path: "prefab/login/scene_launch_anim",
|
|
tag: SCENE_TAG.scene
|
|
},
|
|
// 启动动画场景
|
|
"SceneLaunchAnimH": {
|
|
path: "prefab/login/h/scene_launch_h",
|
|
tag: SCENE_TAG.scene
|
|
},
|
|
// 登录场景
|
|
"LoginScene": {
|
|
path: "prefab/login/scene_login",
|
|
tag: SCENE_TAG.scene
|
|
},
|
|
// 主场景
|
|
"MainScene": {
|
|
path: "prefab/mainui/scene_main",
|
|
tag: SCENE_TAG.scene
|
|
},
|
|
// ============================================================
|
|
// 登录相关
|
|
// ============================================================
|
|
|
|
// 选服界面
|
|
"WndServerList": {
|
|
path: "prefab/login/server_panel_view",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 公告界面
|
|
"WndNotice": {
|
|
path: "prefab/login/notice_window",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 主界面
|
|
// ============================================================
|
|
|
|
// 常驻悬停层
|
|
"WndHoverdLayer": {
|
|
path: "prefab/mainui/wnd_hover",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 首次进入游戏界面
|
|
"FirstEnterScene": {
|
|
path: "prefab/mainui/wnd_first_enter",
|
|
tag: SCENE_TAG.scene
|
|
},
|
|
// 剧情/引导界面
|
|
"WndPlotGuide": {
|
|
path: "prefab/plot/wnd_plot_guide",
|
|
tag: SCENE_TAG.plot
|
|
},
|
|
// 剧情对话界面
|
|
"WndPlotDialogue": {
|
|
path: "prefab/plot/wnd_plot_dialogue",
|
|
tag: SCENE_TAG.plot
|
|
},
|
|
// 剧情改名界面
|
|
"WndPlotRename": {
|
|
path: "prefab/plot/wnd_plot_rename",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 图片流引导
|
|
"WndPlotPictures": {
|
|
path: "prefab/plot/wnd_plot_pictures",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// ============================================================
|
|
// 个人相关
|
|
// ============================================================
|
|
|
|
// 个人界面
|
|
"WndPersonal": {
|
|
path: "prefab/personal/wnd_personal",
|
|
tag: SCENE_TAG.panel,
|
|
cache: true
|
|
},
|
|
// 个人头像界面
|
|
"WndPersonalAvatarChange": {
|
|
path: "prefab/personal/wnd_personal_avatar",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 兑换码界面
|
|
"WndPersonalExchange": {
|
|
path: "prefab/personal/wnd_personal_exchange",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 冒险形象界面
|
|
"WndPersonalFigure": {
|
|
path: "prefab/personal/wnd_personal_figure",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 秘书组界面
|
|
"WndPersonalClerk": {
|
|
path: "prefab/personal/wnd_personal_clerk",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 桌面背景
|
|
"WndSwapDesktop": {
|
|
path: "prefab/personal/wnd_swap_desktop",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// ============================================================
|
|
// 背包相关
|
|
// ============================================================
|
|
"WndBag": {
|
|
path: "prefab/bag/wnd_bag",
|
|
tag: SCENE_TAG.win,
|
|
cache: true
|
|
},
|
|
// 背包伙伴碎片预览界面
|
|
"WndItemPartnerDetail": {
|
|
path: "prefab/bag/wnd_item_partner_detail",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 礼包选择面板
|
|
"WndGiftChoose": {
|
|
path: "prefab/bag/wnd_item_gift_choose",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 自选礼包批量选择面板
|
|
"WndGiftMoreChoose": {
|
|
path: "prefab/bag/wnd_item_gift_morechoose",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 道具出售界面
|
|
"WndItemSell": {
|
|
path: "prefab/bag/wnd_item_sell",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 通用获得道具展示显示面板
|
|
"WndItemRewards": {
|
|
path: "prefab/bag/wnd_item_rewards",
|
|
tag: SCENE_TAG.panel,
|
|
cache: true
|
|
},
|
|
// 合成界面
|
|
"WndItemMerge": {
|
|
path: "prefab/bag/wnd_item_merge",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 批量使用
|
|
"WndItemBatchUse": {
|
|
path: "prefab/bag/wnd_item_batchuse",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 道具选择界面
|
|
"WndItemSelectPanel": {
|
|
path: "prefab/bag/wnd_item_select",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 道具选择界面
|
|
"WndItemDecompose": {
|
|
path: "prefab/bag/wnd_item_decompose",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 伙伴相关
|
|
// ============================================================
|
|
|
|
// 伙伴背包
|
|
"WndPartnerBag": {
|
|
path: "prefab/partner/bag/wnd_partner",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 伙伴详情界面
|
|
"WndPartnerInfo": {
|
|
path: "prefab/partner/partnerInfo/wnd_partner_info",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 伙伴 装备操作面板
|
|
"WndPartnerEquipChangePanel": {
|
|
path: "prefab/partner/wnd_eqm_ware_changed",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 装备单选面板
|
|
"WndPartnerEquipSelectPanel": {
|
|
path: "prefab/partner/wnd_eqm_select",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 装备合成预览面板
|
|
"WndPartnerEquipCompoundPreviewPanel": {
|
|
path: "prefab/partner/wnd_partner_equip_compound_preview",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 装备合成记录面板
|
|
"WndPartnerEquipCompoundRecordsPanel": {
|
|
path: "prefab/partner/wnd_partner_equip_compound_records",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴 伙伴升阶面板
|
|
"WndPartnerUpgrade": {
|
|
path: "prefab/partner/wnd_partner_upgrade",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴属性详情面板
|
|
"WndPartnerPropDetailsPanel": {
|
|
path: "prefab/partner/wnd_partner_prop_details",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 伙伴 选择伙伴面板
|
|
"WndPartnerSelectPanel": {
|
|
path: "prefab/partner/wnd_partner_select",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴置换预览界面
|
|
"WndPartnerReformConverPreview": {
|
|
path: "prefab/partner/wnd_partner_reform_covert_preview",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴改造主页
|
|
"WndPartnerReform": {
|
|
path: "prefab/partner/reform/wnd_partner_reform",
|
|
tag: SCENE_TAG.win,
|
|
cache: true
|
|
},
|
|
// 伙伴技能升级面板
|
|
"WndPartnerSkillUpLevel": {
|
|
path: "prefab/partner/wnd_partner_skill_uplv",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴技能学习面板
|
|
"WndPartnerSkillLearn": {
|
|
path: "prefab/partner/wnd_partner_skill_learn",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴技能预览面板
|
|
"WndPartnerSkillPreview": {
|
|
path: "prefab/partner/wnd_partner_skill_preview",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴 查看立绘操作
|
|
"WndPartnerDrawPopup": {
|
|
path: "prefab/partner/wnd_partner_look_role",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴升阶解锁技能弹窗提示面板
|
|
"WndPartnerSkillUnlockPopup": {
|
|
path: "prefab/partner/wnd_partner_skill_unlock",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 伙伴升阶弹窗提示面板
|
|
"WndPartnerUpgradePopup": {
|
|
path: "prefab/partner/wnd_partner_upgrade_popup",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 伙伴升星弹窗提示
|
|
"WndPartnerUpstarPopup": {
|
|
path: "prefab/partner/wnd_partner_upstar_popup",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 新皮肤获取提示
|
|
"WndPartnerSkinReward": {
|
|
path: "prefab/partner/skin/wnd_partner_skin_reward",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 伙伴战斗义肢预览面板
|
|
"WndPartnerHolyPreview": {
|
|
path: "prefab/partner/holy/wnd_partner_holy_preview",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴战斗义肢更换面板
|
|
"WndPartnerHolySelect": {
|
|
path: "prefab/partner/holy/wnd_partner_holy_select",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴战斗义肢 洗炼
|
|
"WndPartnerHolyRefinement": {
|
|
path: "prefab/partner/holy/wnd_partner_holy_reset",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴战斗义肢 装配
|
|
"WndPartnerHolyAssemble": {
|
|
path: "prefab/partner/holy/wnd_partner_holy_assemble",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴战斗义肢属性加成
|
|
"WndPartnerHolyBonus": {
|
|
path: "prefab/partner/holy/wnd_partner_holy_details",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机装配
|
|
"WndElfinAssemble": {
|
|
path: "prefab/partner/wing/wnd_wing_assemble",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 伙伴-- 僚机预览
|
|
"WndElfinPreview": {
|
|
path: "prefab/partner/wing/wnd_wing_preview",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 伙伴-- 僚机科研
|
|
"WndElfinScientfic": {
|
|
path: "prefab/partner/wing/wnd_wing_scientific",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 伙伴-- 僚机堡垒升阶面板
|
|
"WndWingUpgrade": {
|
|
path: "prefab/partner/wing/wnd_wing_upgrade",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机解锁说明
|
|
"WndUnlockedDesc": {
|
|
path: "prefab/partner/wing/wnd_wing_tips_unlocked",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机采购
|
|
"WndElfinProcurement": {
|
|
path: "prefab/partner/wing/wnd_wing_procurement",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 伙伴-- 僚机技能升级
|
|
"WndElfinUpSkill": {
|
|
path: "prefab/partner/wing/wnd_wing_skill_uplv",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机选择科研item
|
|
"WndElfinScientficItem": {
|
|
path: "prefab/partner/wing/wnd_wing_select_scientfic_item",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机 许愿弹窗
|
|
"WndElfinWishItem": {
|
|
path: "prefab/partner/wing/wnd_wing_wish_select",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机 采购使用钻石弹窗
|
|
"WndUseDiamondUseLottery": {
|
|
path: "prefab/partner/wing/wnd_wing_tips_use",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机 僚机egg合成界面
|
|
"WndWingEggMerge": {
|
|
path: "prefab/partner/wing/wnd_wing_egg_merge",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 伙伴-- 僚机 僚机egg合成界面
|
|
"WndWingBuy": {
|
|
path: "prefab/partner/wing/wnd_wing_egg_buy",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 召唤相关
|
|
// ============================================================
|
|
|
|
// 召唤主界面
|
|
"WndSummon": {
|
|
path: "prefab/summon/wnd_summon",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 召唤动画展示
|
|
"WndSummonAnimation": {
|
|
path: "prefab/summon/animation/wnd_summon_animation",
|
|
tag: SCENE_TAG.summon
|
|
},
|
|
// 积分召唤界面
|
|
"WndSummonScore": {
|
|
path: "prefab/summon/score/wnd_summon_score",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 召唤说明界面
|
|
"WndSummonRule": {
|
|
path: "prefab/summon/wnd_summon_rule",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 召唤概率公示说明界面
|
|
"WndSummonRateShow": {
|
|
path: "prefab/summon/wnd_summon_rates",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 召唤奖池界面
|
|
"WndPartnerPool": {
|
|
path: "prefab/summon/wnd_summon_pool",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 水晶卡牌召唤界面
|
|
"WndSummonCrystalCard": {
|
|
path: "prefab/summon/crystal/wnd_crystal_card",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 水晶召唤概率
|
|
"WndSummonCrystalRates": {
|
|
path: "prefab/summon/crystal/wnd_crystal_rates",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 水晶召唤商店
|
|
"WndSummonCrystalShop": {
|
|
path: "prefab/summon/crystal/wnd_crystal_shop",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 水晶召唤伙伴转换
|
|
"WndSummonCrystalSwap": {
|
|
path: "prefab/summon/crystal/wnd_crystal_swap",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 无限召唤记录
|
|
"WndSummonInfiniteRecord": {
|
|
path: "prefab/summon/infinite/wnd_infinite_record",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// ============================================================
|
|
// 家园相关
|
|
// ============================================================
|
|
|
|
// 家园主页
|
|
"WndHome": {
|
|
path: "prefab/home/wnd_home",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 家园足迹界面
|
|
"WndHomeFootmark": {
|
|
path: "prefab/home/wnd_home_footmark",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 同步中心界面
|
|
"WndSyncCenter": {
|
|
path: "prefab/home/sync_center/wnd_sync_center",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 同步中心:英雄提示界面
|
|
"WndSyncCenterJoin": {
|
|
path: "prefab/home/sync_center/wnd_sync_joined",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 派遣界面
|
|
"WndDispatchTask": {
|
|
path: "prefab/home/dispatch/wnd_dispatch",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 派遣选择界面
|
|
"WndDispatchPartnerSelector": {
|
|
path: "prefab/home/dispatch/wnd_dispatch_selector",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 成就界面
|
|
"WndAchievement": {
|
|
path: "prefab/home/achievement/wnd_achievement",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 成就奖励界面
|
|
"WndAchievementRewards": {
|
|
path: "prefab/home/achievement/wnd_achievement_rewards",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 闺蜜界面
|
|
"WndBedroom": {
|
|
path: "prefab/home/bedroom/wnd_bedroom",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 闺蜜剧情场景
|
|
"WndBedroomStory": {
|
|
path: "prefab/home/bedroom/wnd_bedroom_story",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 闺蜜档案分支
|
|
"WndBedroomDocument": {
|
|
path: "prefab/home/bedroom/wnd_bedroom_doc",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 闺蜜加成说明
|
|
"WndBedroomHelp": {
|
|
path: "prefab/home/bedroom/wnd_bedroom_help",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 家园 基础核心界面
|
|
"WndKernelMain": {
|
|
path: "prefab/home/base_kernel/wnd_base_kernelc",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 家园 基础核心屬性 預覽界面
|
|
"WndKernelPreview": {
|
|
path: "prefab/home/base_kernel/wnd_kernel_camptip",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 家园 基础核心进阶
|
|
"WndKernelUpgrade": {
|
|
path: "prefab/home/base_kernel/wnd_kernel_upgrade",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 家园 基础核心解锁
|
|
"WndKernelUnlocked": {
|
|
path: "prefab/home/base_kernel/wnd_kernel_unlock",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 家园 基础核心解锁
|
|
"WndKernelUnlockedBack": {
|
|
path: "prefab/home/base_kernel/wnd_kernel_unlock_back",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 家园 基础核心解锁
|
|
"WndKernelUplevel": {
|
|
path: "prefab/home/base_kernel/wnd_kernel_uplevel",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 家园 图鉴
|
|
"WndLibrary": {
|
|
path: "prefab/home/library/wnd_library",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 家园 图鉴详情
|
|
"WndLibraryPartner": {
|
|
path: "prefab/home/library/wnd_library_partner",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 家园 H
|
|
"WndHomeH": {
|
|
path: "prefab/home/h/wnd_home_h",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// ============================================================
|
|
// 商店相关
|
|
// ============================================================
|
|
|
|
// 兑换商店
|
|
"WndShopMain": {
|
|
path: "prefab/shop/wnd_shop",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 兑换商店 杂货 黑市
|
|
"WndBlackMarket": {
|
|
path: "prefab/shop/wnd_shop_blcak_market",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 支付界面
|
|
"WndPayment": {
|
|
path: "prefab/payment/wnd_payment",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// ============================================================
|
|
// PVE相关
|
|
// ============================================================
|
|
|
|
"WndBattleScene": {
|
|
path: "prefab/battle/battle_scene",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//PVE入口
|
|
"WndEsenciseMain": {
|
|
path: "prefab/pve/wnd_dungeon_esencise",
|
|
tag: SCENE_TAG.win,
|
|
cache: true
|
|
},
|
|
// 世界地圖
|
|
"WndWorldMap": {
|
|
path: "prefab/pve/worldmap/wnd_worldmap",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 世界地圖奖励
|
|
"WndWorldMapReward": {
|
|
path: "prefab/pve/worldmap/wnd_worldmap_rewards",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//pve排行榜和獎勵合并窗口
|
|
"WndPVERankAward": {
|
|
path: "prefab/pve/wnd_pve_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//日常副本入口
|
|
"WndDungeonMain": {
|
|
path: "prefab/pve/dungeon/wnd_dungeon_main",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//战斗挂机
|
|
"WndBattleHook": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_hook",
|
|
tag: SCENE_TAG.battleUI,
|
|
cache: true
|
|
},
|
|
//阵营克制
|
|
"WndBattkeCamp": {
|
|
path: "prefab/battle/wnd_battle_camp",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//挂机奖励预览
|
|
"WndBattleHookReward": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_hookreward",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//在綫奖励
|
|
"WndBattleOnlineGift": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_onlinegift",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//快速作戰
|
|
"WndBattleQuick": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_quick",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//個人通關獎勵
|
|
"WndBattleReward": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_reward",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//上陣界面
|
|
"WndFromView": {
|
|
path: "prefab/battle/battledrama/battledrama_wnd",
|
|
tag: SCENE_TAG.win,
|
|
cache: true
|
|
},
|
|
// "WndBattleFrom": {
|
|
// path: "prefab/battle/battledrama/wnd_battledrama_form",
|
|
// tag: SCENE_TAG.win,
|
|
// cache: true,
|
|
// },
|
|
|
|
//陣法選擇
|
|
"WndFromSelect": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_formselect",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//buff列表
|
|
"WndBattleBuffList": {
|
|
path: "prefab/battle/wnd_battle_bufflist",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//buff總覽
|
|
"WndBattleBuffInfo": {
|
|
path: "prefab/battle/wnd_battle_buffinfo",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 战斗通用view
|
|
"WndFormView": {
|
|
path: "prefab/battle/wnd_battle_view",
|
|
tag: SCENE_TAG.battleUI,
|
|
cache: true
|
|
},
|
|
//boss來襲
|
|
"WndBossInfo": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_bossinfo",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 试练塔主界面
|
|
"WndStartower": {
|
|
path: "prefab/pve/startower/wnd_star_tower",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// "WndStartowerInfo": {
|
|
// path: "prefab/pve/startower/wnd_star_tower_info",
|
|
// tag: SCENE_TAG.panel,
|
|
// },
|
|
|
|
// "WndStartowerAward": {
|
|
// path: "prefab/pve/startower/wnd_star_tower_award",
|
|
// tag: SCENE_TAG.panel,
|
|
// },
|
|
|
|
//位面征战
|
|
"WndPlanesafkMain": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_main",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//buff选择
|
|
"WndPlanesafkBuffChoose": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_buff",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//buff展示界面
|
|
"WndPlanesafkBuffList": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_usebuff",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//英雄列表
|
|
"WndPlanesafkHeroList": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_herolist",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//站前准备
|
|
"WndPlanesafkMasterInfo": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_master",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 训练营新手 主界面
|
|
"WndTrainingCamp": {
|
|
path: "prefab/pve/trainingcamp/wnd_training_camp",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 训练营新手
|
|
"WndTrainingCampMore": {
|
|
path: "prefab/pve/trainingcamp/wnd_training_camp_more",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//商店事件
|
|
"WndPlanesafkEvtShop": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_evtshop",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//复活和回复事件
|
|
"WndPlanesafkEvts": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_board",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//雇佣英雄事件
|
|
"WndPlanesafkHire": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_hire",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//收穫物品
|
|
"WndPlanesafkGet": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_get",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//命运水晶事件
|
|
"WndPlanesafkUseItem": {
|
|
path: "prefab/pve/planesafk/wnd_planesafk_itemuse",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//无尽试炼
|
|
"WndEndlessMain": {
|
|
path: "prefab/pve/endless/wnd_endless_main",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
"WndEndlessBattle": {
|
|
path: "prefab/pve/endless/wnd_endless_battle",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//无尽试炼buff选择
|
|
"WndEndlessBuff": {
|
|
path: "prefab/pve/endless/wnd_endless_buff",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//无尽试炼我的助战
|
|
"WndEndlessMyHelp": {
|
|
path: "prefab/pve/endless/wnd_endless_myhelp",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//无尽试炼其他助战
|
|
"WndEndlessOtherHelp": {
|
|
path: "prefab/pve/endless/wnd_endless_otherhelp",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//无尽试炼奖励详情
|
|
"WndEndlessReward": {
|
|
path: "prefab/pve/endless/wnd_endless_reward",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//陣營核心
|
|
"WndElement": {
|
|
path: "prefab/pve/element/wnd_element_main",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
"WndElemetEctype": {
|
|
path: "prefab/pve/element/wnd_element_ectype",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//殲星迷途主界面
|
|
"WndAdventureMain": {
|
|
path: "prefab/pve/starlost/wnd_adventure_main",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//殲星迷途无尽模式选英雄
|
|
"WndAdventureEndlessHero": {
|
|
path: "prefab/pve/starlost/wnd_adventure_endlesshero",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途模式选择界面
|
|
"WndAdventureModel": {
|
|
path: "prefab/pve/starlost/wnd_adventure_model",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途NPC事件
|
|
"WndAdventurePeople": {
|
|
path: "prefab/pve/starlost/wnd_adventure_people",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途陷阱推送事件
|
|
"WndAdventureTrap": {
|
|
path: "prefab/pve/starlost/wnd_adventure_trap",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途商店事件
|
|
"WndAdventureShop": {
|
|
path: "prefab/pve/starlost/wnd_adventure_shop",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途改造台事件
|
|
"WndAdventureTransform": {
|
|
path: "prefab/pve/starlost/wnd_adventure_transform",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途戰鬥事件
|
|
"WndAdventureFight": {
|
|
path: "prefab/pve/starlost/wnd_adventure_fight",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途更多道具更多buff
|
|
"WndAdventureMore": {
|
|
path: "prefab/pve/starlost/wnd_adventure_more",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途周回獎勵
|
|
"WndAdventureExploreAward": {
|
|
path: "prefab/pve/starlost/wnd_adventure_exploreaward",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途無盡模式獎勵
|
|
"WndAdventureEndlessAward": {
|
|
path: "prefab/pve/starlost/wnd_adventure_endlessaward",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途信息窗口
|
|
"WndAdventureMsg": {
|
|
path: "prefab/pve/starlost/wnd_adventure_msg",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
//殲星迷途復活界面
|
|
"WndAdventureRelive": {
|
|
path: "prefab/pve/starlost/wnd_adventure_relive",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途英雄詳情界面
|
|
"WndAdventureDetail": {
|
|
path: "prefab/pve/starlost/wnd_adventure_detail",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//殲星迷途周回模式选英雄
|
|
"WndAdventureWeeklyHero": {
|
|
path: "prefab/pve/starlost/wnd_adventure_weeklyhero",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
"WndHeavenMain": {
|
|
path: "prefab/pve/RelicExploration/wnd_heaven_main",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//遺跡探索戰鬥詳情
|
|
"WndHeavenFightinfo": {
|
|
path: "prefab/pve/RelicExploration/wnd_heaven_fightinfo",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//遺跡探索所有章節獎勵
|
|
"WndHeavenChapter": {
|
|
path: "prefab/pve/RelicExploration/wnd_heaven_chapter",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//遺跡探索章節階段獎勵
|
|
"WndHeavenAward": {
|
|
path: "prefab/pve/RelicExploration/wnd_heaven_award",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// PVP相关
|
|
// ============================================================
|
|
|
|
// PVP入口挑战页面
|
|
"WndPVP": {
|
|
path: "prefab/pvp/wnd_pvp",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// PVP入口挑战页面 时空裂缝页面
|
|
"WndPVPTimespace": {
|
|
path: "prefab/pvp/wnd_pvp_timespace",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//竞技场
|
|
"WndArenaLoopChallenge": {
|
|
path: "prefab/pvp/arena/wnd_arena_loop_challenge",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//竞技场 排行奖励等
|
|
"WndArenaLoopCRankAward": {
|
|
path: "prefab/pvp/wnd_differ_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//竞技场 战报相关等
|
|
"WndArenaLoopCWarLog": {
|
|
path: "prefab/pvp/arena/wnd_arena_warlog",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//竞技场 膜拜前三ui显示
|
|
"WndArenaLoopCWorShip": {
|
|
path: "prefab/pvp/arena/wnd_arena_loopc_worship",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//竞技场 结算面板
|
|
"WndArenaLoopCResult": {
|
|
path: "prefab/pvp/wnd_arena_loopc_result",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//竞技场 结算面板
|
|
"WndArenaLoopCDetail": {
|
|
path: "prefab/pvp/wnd_arena_loopc_detail",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//跨服冠军赛
|
|
"WndCrossChampionWorship": {
|
|
path: "prefab/pvp/crosschampion/wnd_cross_champion_worship",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//跨服 天梯賽--- 全面格鬭塲
|
|
"WndLadder": {
|
|
path: "prefab/pvp/ladder/wnd_ladder_challenge",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//跨服 天梯賽--- 挑戰詳情
|
|
"WndLadderFightInfo": {
|
|
path: "prefab/pvp/ladder/wnd_ladderfight_info",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//跨服 天梯賽--- 英雄殿
|
|
"WndLadderWorship": {
|
|
path: "prefab/pvp/ladder/cmp/wnd_ladder_worship",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//跨服 天梯賽--- 戰報
|
|
"WndLadderWarLog": {
|
|
path: "prefab/pvp/ladder/cmp/wnd_ladder_warlog",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//跨服 周冠軍賽--- 挑戰
|
|
"WndCChampionChallenge": {
|
|
path: "prefab/pvp/crosschampion/wnd_cross_champion_challenge",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//跨服 周冠軍賽--- 挑戰记录
|
|
"WndCChampionWarLog": {
|
|
path: "prefab/pvp/crosschampion/wnd_cchampion_warlog",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//跨服 周冠軍賽--- 自己挑戰最終結果
|
|
"WndCChampionFinal": {
|
|
path: "prefab/pvp/crosschampion/wnd_cchampion_final",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
//跨服 周冠軍賽--- 自己競猜相關
|
|
"WndCChampionBet": {
|
|
path: "prefab/pvp/crosschampion/wnd_cchampion_betlog",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//跨服 周冠軍賽--- 夥伴傷害詳情
|
|
"WndCChampionPartDetail": {
|
|
path: "prefab/pvp/crosschampion/wnd_cchampion_detail",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//陣營大戰
|
|
"WndCampfightMain": {
|
|
path: "prefab/pvp/campfighting/campfight_wnd",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//陣營大戰往期排行
|
|
"WndCampfightRank": {
|
|
path: "prefab/pvp/campfighting/wnd_campfight_award_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//陣營大戰階段推送
|
|
"WndCampfightPush": {
|
|
path: "prefab/pvp/campfighting/wnd_campfight_push",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//陣營大戰名次變動推送
|
|
"WndCampfightPlace": {
|
|
path: "prefab/pvp/campfighting/wnd_campfight_place",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//陣營大戰往期排行
|
|
"WndCampfightFinal": {
|
|
path: "prefab/pvp/wnd_pvp_final",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
//段位比武
|
|
"WndEliteRankMain": {
|
|
path: "prefab/pvp/rank/wnd_pvp_rank",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//段位比武
|
|
"WndEliteRankTop": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvp_ranktop",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 段位比武 戰令
|
|
"WndEliteRankOrder": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvp_rankorder",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 段位比武 匹配
|
|
"WndEliteRankMatch": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvp_rankmatch",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 段位比武 每日任務
|
|
"WndEliteRankTask": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvp_ranktask",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 段位比武 記錄
|
|
"WndEliteRankRecords": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvp_rankrecords",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 段位比武 獎勵展示
|
|
"WndEliteRankReward": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvprank_reward",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 段位比武 記錄
|
|
"WndEliteRankRecordsInfo": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvp_rankbattle",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 段位比武 個人戰績相關
|
|
"WndEliteRankAchieve": {
|
|
path: "prefab/pvp/rank/cmp/wnd_pvp_rankachieve",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 社交相关
|
|
// ============================================================
|
|
|
|
// 好友面板
|
|
"WndFriend": {
|
|
path: "prefab/friend/friend_window",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 好友詳情
|
|
"FriendCheckInfoWindow": {
|
|
path: "prefab/friend/friend_check_info",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 舉報
|
|
"FriendCheckReport": {
|
|
path: "prefab/friend/wnd_friend_report",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 我要變强
|
|
"WndStronger": {
|
|
path: "prefab/battle/battledrama/stronger/stronger_main_window",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 郵件
|
|
"WndMail": {
|
|
path: "prefab/mail/mail_window",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 郵件
|
|
"WndMailTest": {
|
|
path: "prefab/mail/mail_trychange",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 开服预告
|
|
"WndOpenServer": {
|
|
path: "prefab/openserver/wnd_open_server",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 聊天
|
|
"WndChat": {
|
|
path: "prefab/chat/chat_window",
|
|
tag: SCENE_TAG.chat
|
|
},
|
|
// 日常任务界面
|
|
"WndTaskDaily": {
|
|
path: "prefab/task/wnd_task_daily",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 主支线任务
|
|
"WndTaskMain": {
|
|
path: "prefab/task/wnd_task_mainc",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 排行榜界面
|
|
"WndRank": {
|
|
path: "prefab/rank/wnd_rank_main",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 排行榜界面
|
|
"WndRankInfo": {
|
|
path: "prefab/rank/wnd_rank_diff",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 联盟相关
|
|
// ============================================================
|
|
|
|
// 联盟界面
|
|
"WndGuild": {
|
|
path: "prefab/guild/wnd_guild",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 联盟列表界面
|
|
"WndGuildList": {
|
|
path: "prefab/guild/wnd_guild_list",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 联盟捐献界面
|
|
"WndGuildDonate": {
|
|
path: "prefab/guild/wnd_guild_donate",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 联盟排名界面
|
|
"WndGuildRank": {
|
|
path: "prefab/guild/wnd_guild_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟设置界面
|
|
"WndGuildSetting": {
|
|
path: "prefab/guild/wnd_guild_setting",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟每日獎勵
|
|
"WndGuildReward": {
|
|
path: "prefab/guild/wnd_guild_memberreward",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟加入申请界面
|
|
"WndGuildReqJoinList": {
|
|
path: "prefab/guild/wnd_guild_reqlist",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟成员浏览界面
|
|
"WndGuildMemberList": {
|
|
path: "prefab/guild/member/wnd_guild_members",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟成员管理界面
|
|
"WndGuildMemberManager": {
|
|
path: "prefab/guild/member/wnd_guild_members_mgr",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟活跃界面
|
|
"WndGuildActive": {
|
|
path: "prefab/guild/active/wnd_guild_active",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 联盟活跃详情界面
|
|
"WndGuildActiveDetails": {
|
|
path: "prefab/guild/active/wnd_guild_active_details",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟挑战界面
|
|
"WndGuildChallenge": {
|
|
path: "prefab/guild/challenge/wnd_guild_challenge",
|
|
tag: SCENE_TAG.win,
|
|
cache: true
|
|
},
|
|
// 联盟仓库界面
|
|
"WndGuildDepot": {
|
|
path: "prefab/guild/wnd_guild_depot",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟商城界面
|
|
"WndGuildMarket": {
|
|
path: "prefab/guild/wnd_guild_market",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟联赛界面
|
|
"WndGuildRace": {
|
|
path: "prefab/guild/wnd_guild_race",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟秘境界面
|
|
"WndGuildSArea": {
|
|
path: "prefab/guild/wnd_guild_sarea",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟天赋界面
|
|
"WndGuildTalent": {
|
|
path: "prefab/guild/wnd_guild_talent",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 联盟天赋界面
|
|
"WndGuildTalentSkillUplev": {
|
|
path: "prefab/guild/talent/wnd_guild_talent_skill_uplev",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 联盟天赋 pvp重置屬性
|
|
"WndGuildTalentReset": {
|
|
path: "prefab/guild/talent/wnd_guild_talent_rest_tip",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//聯盟榮耀戰主界面
|
|
"WndGuildBatMain": {
|
|
path: "prefab/guild/battles/wnd_guild_bat",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//聯盟榮耀戰佈陣
|
|
"WndGuildBatForm": {
|
|
path: "prefab/guild/battles/wnd_guildbat_form",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//聯盟榮耀戰匹配列表
|
|
"WndGuildBatMeta": {
|
|
path: "prefab/guild/battles/wnd_guildbat_vslist",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//聯盟榮耀戰宝箱
|
|
"WndGuildBatBox": {
|
|
path: "prefab/guild/battles/wnd_guildbat_box",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//聯盟榮耀戰戰場日志
|
|
"WndGuildBatLog": {
|
|
path: "prefab/guild/battles/wnd_guildbat_log",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//聯盟榮耀戰排行榜
|
|
"WndGuildBatRank": {
|
|
path: "prefab/guild/battles/wnd_guildbat_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//聯盟倉庫
|
|
"WndGuildMarketMain": {
|
|
path: "prefab/guild/marketplace/wnd_marketplace_main",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
"WndGuildMarketBuy": {
|
|
path: "prefab/guild/marketplace/wnd_marketplace_buy",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 互斥队列相关弹窗界面
|
|
// ============================================================
|
|
|
|
// 角色升级通告
|
|
"PopupLevelUp": {
|
|
path: "prefab/popup/popup_level_up",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 奖励展示界面
|
|
"PopupRewards": {
|
|
path: "prefab/popup/popup_rewards",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 伙伴获得展示界面
|
|
"WndSummonPartnerShowPanel": {
|
|
path: "prefab/summon/wnd_summon_show_partners",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 僚机科研奖励获得
|
|
"WndScientificReward": {
|
|
path: "prefab/partner/wing/wnd_wing_srewards",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 僚机采购获得
|
|
"WndWingRewardShow": {
|
|
path: "prefab/partner/wing/wnd_wing_procurement_rewards",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
//通用勝利結算
|
|
"WndWinSettle": {
|
|
path: "prefab/battle/battlesettle/battle_win_settle",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
//通用失败結算
|
|
"WndFailSettle": {
|
|
path: "prefab/battle/battlesettle/battle_fail_settle",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
//特殊結算
|
|
"WndSpecialSettle": {
|
|
path: "prefab/battle/battlesettle/battle_special_settle",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//通用數據統計
|
|
"WndSettleDetail": {
|
|
path: "prefab/battle/battlesettle/settle_detail_view",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 设置相关
|
|
// ============================================================
|
|
|
|
// 设置面板
|
|
"WndSetting": {
|
|
path: "prefab/setting/wnd_setting",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// BUG提交面板
|
|
"WndBugReport": {
|
|
path: "prefab/setting/wnd_bug_report",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 小游戏相关
|
|
// ============================================================
|
|
|
|
// 大富翁界面
|
|
"WndMonopoly": {
|
|
path: "prefab/sgames/monopoly/wnd_monopoly",
|
|
tag: SCENE_TAG.win,
|
|
release: false
|
|
},
|
|
// 选择行星武器
|
|
"WndHallowSelect": {
|
|
path: "prefab/battle/battledrama/wnd_battledrama_hallowsselect",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 道具购买界面
|
|
"WndItemBuy": {
|
|
path: "prefab/bag/wnd_item_buy",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 其他相关
|
|
// ============================================================
|
|
|
|
// 一键领取
|
|
"WndOnceRewards": {
|
|
path: "prefab/once/wnd_once_rewards",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 点金
|
|
"WndPopBuyCoin": {
|
|
path: "prefab/popup/popup_coin_buy",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 阵容推荐
|
|
"WndPopRecommend": {
|
|
path: "prefab/popup/popup_recommend",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 随机属性
|
|
"WndPopRandomProps": {
|
|
path: "prefab/popup/popup_random_props_tips",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 世界等级
|
|
"WndWorldLevel": {
|
|
path: "prefab/mainui/wnd_world_level",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 多道具预览
|
|
"PopItemsPreview": {
|
|
path: "prefab/popup/popup_items_preview",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 道具相關操作
|
|
"WndBagItemsReforgot": {
|
|
path: "prefab/bag/wnd_item_reforgot",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 多行字符串输入框
|
|
"WndInputWords": {
|
|
path: "prefab/popup/popup_input_words",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 多行字符串输入框
|
|
"WndInputString": {
|
|
path: "prefab/popup/popup_input_string",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 通用伙伴提示
|
|
"WndTipPartner": {
|
|
path: "prefab/popup/popup_partner_tipsc",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
"WndPvpRaceTip": {
|
|
path: "prefab/popup/popup_crossrace_tip",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 通用文本提示
|
|
"WndTipText": {
|
|
path: "prefab/popup/popup_com_tips",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 通用技能提示
|
|
"WndTipSkill": {
|
|
path: "prefab/popup/popup_skill_tips",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 通用道具提示
|
|
"WndTipItem": {
|
|
path: "prefab/popup/popup_item_tips",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// 通用道具提示
|
|
"WndOtherItemBuy": {
|
|
path: "prefab/popup/popup_item_other_buy",
|
|
tag: SCENE_TAG.msg
|
|
},
|
|
// ============================================================
|
|
// 戰鬥義肢相關
|
|
// ============================================================
|
|
// 戰鬥義肢祈禱
|
|
"WndHolyPray": {
|
|
path: "prefab/pray/wnd_holy_pray",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// 戰鬥義肢 祈禱許願
|
|
"WndHolyPrayWish": {
|
|
path: "prefab/pray/wnd_lucky_wish",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 戰鬥義肢 神像升級
|
|
"WndHolyStatueUplev": {
|
|
path: "prefab/pray/wnd_holy_statueup",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 戰鬥義肢 自动出售设置
|
|
"WndHolyEqmAutoSell": {
|
|
path: "prefab/pray/wnd_holy_autosell",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 戰鬥義肢 自动出售设置
|
|
"WndHolyPrayRate": {
|
|
path: "prefab/pray/wnd_holy_rate",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 戰鬥義肢 兌換商城
|
|
"WndHolyPrayShop": {
|
|
path: "prefab/pray/wnd_holy_shop",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
// ============================================================
|
|
// 详细规则相关
|
|
// ============================================================
|
|
"WndPopRule": {
|
|
path: "prefab/popup/popup_rule",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 活动相关
|
|
// ============================================================
|
|
|
|
// 常规活动界面
|
|
"WndActs": {
|
|
path: "prefab/acts/coms/wnd_acts",
|
|
tag: SCENE_TAG.win
|
|
},
|
|
//首充
|
|
"WndFirstCharge": {
|
|
path: "prefab/acts/firstcharge/wnd_acts_first",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
//群星轨迹
|
|
"WndActStarTravel": {
|
|
path: "prefab/acts/startravel/fab_acts_startravel",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//群星轨迹(战令购买)
|
|
"WndActStartravelOrder": {
|
|
path: "prefab/acts/startravel/wnd_acts_starorder",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//升星有禮(活动界面)
|
|
"WndActUpstar": {
|
|
path: "prefab/acts/upstar/wnd_act_upstar",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//升星有禮(英雄選擇)
|
|
"WndActUpstarHero": {
|
|
path: "prefab/acts/upstar/wnd_act_upstar_hero",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//升星计划
|
|
"WndActHeroUpstar": {
|
|
path: "prefab/acts/upstar/wnd_act_heroupstar",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//陣容自選(英雄選擇)
|
|
"WndActPartnerSelect": {
|
|
path: "prefab/acts/optionalparty/wnd_act_optional_select",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//獎勵自選 超值自選
|
|
"WndActCustomGift": {
|
|
path: "prefab/acts/optionalgift/fab_act_optionalgift",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//每日助力
|
|
"WndActDailyFirst": {
|
|
path: "prefab/acts/dailyfirstcharge/fab_act_dailyfirstcharge",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//獎勵自選 超值自選
|
|
"WndActSevenCustomGift": {
|
|
path: "prefab/acts/sevencustomization/fab_act_custom",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//獎勵自選 七日定制
|
|
"WndActSevenCustomSelect": {
|
|
path: "prefab/acts/sevencustomization/fab_act_customselect",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//陣容自選
|
|
"WndActPartnerParty": {
|
|
path: "prefab/acts/optionalparty/fab_act_optionalparty",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//七日任務獎勵(周期活動)
|
|
"WndActSevenGoalAward": {
|
|
path: "prefab/acts/sevengoal/fab_act_sevengoal_award",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 活动预告界面
|
|
"WndActsForeshow": {
|
|
path: "prefab/acts/coms/wnd_acts_foreshow",
|
|
tag: SCENE_TAG.popup
|
|
},
|
|
// 个人礼包推送
|
|
"WndPersonalPush": {
|
|
path: "prefab/push/wnd_personal_push",
|
|
tag: SCENE_TAG.popup,
|
|
push: true
|
|
},
|
|
// 膨胀红包
|
|
"WndActDoubleRedpacketPop": {
|
|
path: "prefab/acts/doubleredpacket/fab_act_doubleredpacketpop",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 八日約定
|
|
"WndAppoint8": {
|
|
path: "prefab/acts/appoint8/fab_act_appoint8",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 開服衝刺
|
|
"WndGrowthRush": {
|
|
path: "prefab/acts/growthrush/fab_act_growthrush",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 殘骸收集
|
|
"WndWreckageCol": {
|
|
path: "prefab/acts/wreckagecollect/fab_act_wreckageclt",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 起航纍充
|
|
"WndAccumulative": {
|
|
path: "prefab/acts/accumulative/fab_act_accumulative",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 限時特惠
|
|
"WndLimitedTimeOffer": {
|
|
path: "prefab/acts/limitedtimeoffer/fab_act_limitedtimeoffer",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 限時好禮
|
|
"WndLimitGift": {
|
|
path: "prefab/acts/limitgift/fab_act_limitedgift",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 起航专享
|
|
"WndExclusive": {
|
|
path: "prefab/acts/exclusive/fab_act_exclusive",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 夥伴集結
|
|
"WndActAssemblyPop": {
|
|
path: "prefab/acts/assembly/fab_act_assembly",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
"WndActTraining7": {
|
|
path: "prefab/acts/training7/fab_act_training7",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// STEPUP
|
|
"WndActStepUp": {
|
|
path: "prefab/acts/stepup/wnd_act_stepup",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// STEPUP排行榜
|
|
"WndActStepUpRank": {
|
|
path: "prefab/acts/stepup/wnd_act_stepup_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 精英召唤界面
|
|
"WndActElite": {
|
|
path: "prefab/acts/elite/wnd_act_elite",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 精英召唤心愿选择界面
|
|
"WndActEliteSelector": {
|
|
path: "prefab/acts/elite/wnd_act_elite_select",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 精英召唤助力礼包
|
|
"WndActEliteGift": {
|
|
path: "prefab/acts/elite/wnd_act_elite_gift",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 精英召唤排行榜
|
|
"WndActEliteRank": {
|
|
path: "prefab/acts/elite/wnd_act_elite_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//星际初体验
|
|
"WndActPartnertrial": {
|
|
path: "prefab/acts/partnertrial/wnd_act_partnertrial",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
"WndActPartnertrialPv": {
|
|
path: "prefab/acts/partnertrial/wnd_partnertrial_pv",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//银河奇遇
|
|
"WndActEncounter": {
|
|
path: "prefab/acts/encounter/wnd_act_encounter",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
"WndActEncounterDetail": {
|
|
path: "prefab/acts/encounter/wnd_act_encounter_detail",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//星辉密令(新英雄活动)
|
|
"WndActHeroNewOrder": {
|
|
path: "prefab/acts/starorder/fab_heronew_order",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//星界密令
|
|
"WndActStarOrder": {
|
|
path: "prefab/acts/starorder/wnd_starorder",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
"WndStarorderBuys": {
|
|
path: "prefab/acts/starorder/wnd_starorder_buy",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
"WndStarorderPlayer": {
|
|
path: "prefab/acts/starorder/wnd_starorder_pv",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//远航见闻录&传说秘典
|
|
"WndActsSevenGoals": {
|
|
path: "prefab/acts/sevengoal/fab_act_sevengoal",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 星空許願
|
|
"WndActStarSkyPray": {
|
|
path: "prefab/acts/starskyprayer/fab_act_starskyprayer",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 星空許願記錄
|
|
"WndActStarSkyPrayRecords": {
|
|
path: "prefab/acts/starskyprayer/fab_act_starskyprayerrecords",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 星空許願規則
|
|
"WndActStarSkyPrayRule": {
|
|
path: "prefab/acts/starskyprayer/fab_act_starskyprayerrule",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 星空許願直購禮包
|
|
"WndActStarSkyPrayShop": {
|
|
path: "prefab/acts/starskyprayer/fab_act_starskyprayshop",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 神秘人商店
|
|
"WndActMySteryShop": {
|
|
path: "prefab/acts/mysteryshop/fab_act_mysteryshop",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 日常活躍
|
|
"WndActDailyTreasure": {
|
|
path: "prefab/acts/dailytreasure/fab_act_dailytreasure",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
//限定挑戰獎勵rank
|
|
"WndActLimitChalRank": {
|
|
path: "prefab/acts/limitedchallenge/wnd_limitchallenge_rank",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 行星武器相关
|
|
// ============================================================
|
|
|
|
// 行星武器解鎖
|
|
"WndHallowsTip": {
|
|
path: "prefab/partner/hallows/wnd_hallows_get",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 行星武器詳情
|
|
"WndHallowsDetail": {
|
|
path: "prefab/partner/hallows/wnd_hallows_tips",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 行星武器刻印
|
|
"WNdHallowsTrace": {
|
|
path: "prefab/partner/hallows/wnd_hallows_trace",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 主题活动弹窗集
|
|
// ============================================================
|
|
|
|
// 常规活动界面
|
|
"WndActPop10001": {
|
|
path: "prefab/acts/pops/10001/wnd_apopup",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 主题界面
|
|
"WndThemeEntry1001": {
|
|
path: "prefab/acts/themes/1001/wnd_entry",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 主题界面
|
|
"WndThemeEntry1002": {
|
|
path: "prefab/acts/themes/1002/wnd_entry",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 主题界面
|
|
"WndThemeEntry1003": {
|
|
path: "prefab/acts/themes/1003/wnd_entry",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// ============================================================
|
|
// 主题活动模板自适配界面
|
|
// ============================================================
|
|
|
|
// 活动模板:十五日签到活动界面
|
|
"WndActTSign15": {
|
|
path: "prefab/acts/themes/{skin}/wnd_sign15",
|
|
tag: SCENE_TAG.panel
|
|
},
|
|
// 活动积分兑换商城
|
|
"WndActScoreExchangeShop": {
|
|
path: "prefab/acts/summonLimit/wnd_act_summon_score",
|
|
tag: SCENE_TAG.panel
|
|
}
|
|
};
|
|
|
|
// 界面模板
|
|
var TPanel = cc.Class({
|
|
"extends": BridgeView,
|
|
// 初始化
|
|
init: function init(_wname, _keys) {
|
|
var cfgs = PANELS[_wname];
|
|
if (!cfgs || nx.dt.strEmpty(cfgs.path)) {
|
|
nx.error("无效界面:", _wname);
|
|
return;
|
|
}
|
|
|
|
// 这里做一次动态路径转换
|
|
var file = cfgs.path;
|
|
if (nx.dt.objNEmpty(_keys)) {
|
|
if (!!_keys.skin) {
|
|
file.replace("{skin}", "" + _keys.skin);
|
|
}
|
|
}
|
|
this.prefabPath = file;
|
|
this.wname = _wname;
|
|
this.cache = cfgs.cache || false;
|
|
this.viewTag = cfgs.tag;
|
|
if (!nx.dt.numGood(this.viewTag)) {
|
|
this.viewTag = SCENE_TAG.panel;
|
|
}
|
|
}
|
|
});
|
|
|
|
// 菜单合并页面
|
|
var MENUS = {
|
|
// 伙伴窗
|
|
partner: {
|
|
partners: {
|
|
prefab: "prefab/partner/bag/page_partner"
|
|
},
|
|
// 伙伴页
|
|
wings: {
|
|
prefab: "prefab/partner/bag/page_wings"
|
|
},
|
|
// 僚机页
|
|
hallows: {
|
|
prefab: "prefab/partner/bag/page_hallows"
|
|
},
|
|
// 星舰页
|
|
form: {
|
|
prefab: "prefab/partner/bag/page_form"
|
|
} // 编队页
|
|
},
|
|
|
|
// 伙伴详情
|
|
partnerInfo: {
|
|
basic: {
|
|
prefab: "prefab/partner/partnerInfo/page_basic"
|
|
},
|
|
// 伙伴页
|
|
star: {
|
|
prefab: "prefab/partner/partnerInfo/page_star"
|
|
},
|
|
// 僚机页
|
|
inset: {
|
|
prefab: "prefab/partner/partnerInfo/page_inset"
|
|
},
|
|
// 僚机页
|
|
artifact: {
|
|
prefab: "prefab/partner/partnerInfo/page_artifact"
|
|
} // 星舰页
|
|
},
|
|
|
|
// 伙伴窗
|
|
reform: {
|
|
upstar: {
|
|
prefab: "prefab/partner/reform/page_upstar"
|
|
},
|
|
// 升星
|
|
recycle: {
|
|
prefab: "prefab/partner/reform/page_recycle"
|
|
},
|
|
// 僚机页
|
|
back: {
|
|
prefab: "prefab/partner/reform/page_back"
|
|
},
|
|
// 星舰页
|
|
swap: {
|
|
prefab: "prefab/partner/reform/page_swap"
|
|
},
|
|
// 星舰页
|
|
equips: {
|
|
prefab: "prefab/partner/reform/page_equips"
|
|
},
|
|
// 星舰页
|
|
artifact: {
|
|
prefab: "prefab/partner/reform/page_artifact"
|
|
} // 星舰页
|
|
},
|
|
|
|
// 支付窗
|
|
payment: {
|
|
recharge: {
|
|
prefab: "prefab/payment/page_recharge"
|
|
},
|
|
// 充值页
|
|
vip: {
|
|
prefab: "prefab/payment/page_vip"
|
|
},
|
|
// VIP页
|
|
gift: {
|
|
prefab: "prefab/payment/page_gift"
|
|
},
|
|
// 礼包页
|
|
weeklygift: {
|
|
prefab: "prefab/payment/page_weeklygift"
|
|
},
|
|
// 特权商店页
|
|
monthlygift: {
|
|
prefab: "prefab/payment/page_monthlygift"
|
|
},
|
|
// 特权商店页
|
|
shop: {
|
|
prefab: "prefab/payment/page_shop"
|
|
} // 特权商店页
|
|
},
|
|
|
|
// 召唤窗
|
|
summon: {
|
|
base: {
|
|
prefab: "prefab/summon/standard/page_base"
|
|
},
|
|
// 基础召唤
|
|
adv: {
|
|
prefab: "prefab/summon/standard/page_advance"
|
|
},
|
|
// 高级召唤
|
|
friend: {
|
|
prefab: "prefab/summon/standard/page_friend"
|
|
},
|
|
// 友情召唤
|
|
infinite: {
|
|
prefab: "prefab/summon/infinite/page_infinite"
|
|
},
|
|
// 无限召唤
|
|
elite: {
|
|
prefab: "prefab/summon/elite/page_elite"
|
|
},
|
|
// 精英召唤
|
|
crystal: {
|
|
prefab: "prefab/summon/crystal/page_crystal"
|
|
} // 水晶召唤
|
|
},
|
|
|
|
// 跨服冠军赛
|
|
cchampion: {
|
|
race: {
|
|
prefab: "prefab/pvp/crosschampion/cmp/myRace"
|
|
},
|
|
// STEP召唤
|
|
guess: {
|
|
prefab: "prefab/pvp/crosschampion/cmp/guess"
|
|
},
|
|
// 无限召唤
|
|
sfmatch: {
|
|
prefab: "prefab/pvp/crosschampion/cmp/sfmatch"
|
|
} // 精英召唤
|
|
}
|
|
};
|
|
|
|
// 导出
|
|
module.exports = {
|
|
PANELS: PANELS,
|
|
TPanel: TPanel,
|
|
MENUS: MENUS
|
|
};
|
|
|
|
cc._RF.pop(); |