各类弹窗重新设计,使用opps 集成的方式

This commit is contained in:
2024-11-27 17:20:15 +08:00
parent 4ae407bd20
commit 4ba91e95fa
10 changed files with 1870 additions and 292 deletions

View File

@@ -16,8 +16,6 @@ export enum UIID {
Netinstable,
/** 角色控制 */
Role_Controller,
/** 奖励界面 */
Rewards,
}
/** 打开界面方式的配置数据 */
@@ -25,6 +23,5 @@ export var UIConfigData: { [key: number]: UIConfig } = {
[UIID.Loading]: { layer: LayerType.UI, prefab: "loading/prefab/loading", bundle: "resources" },
[UIID.Netinstable]: { layer: LayerType.PopUp, prefab: "common/prefab/netinstable" },
[UIID.Window]: { layer: LayerType.Dialog, prefab: "common/prefab/window" },
[UIID.Rewards]: { layer: LayerType.Dialog, prefab: "gui/rewards" },
[UIID.Role_Controller]: { layer: LayerType.UI, prefab: "gui/role_controller" },
}