This commit is contained in:
walkpan
2024-11-28 08:43:04 +08:00
parent 4ba91e95fa
commit ce0a88988b
6 changed files with 1368 additions and 1397 deletions

View File

@@ -16,6 +16,8 @@ export enum UIID {
Netinstable,
/** 角色控制 */
Role_Controller,
/**物品 */
ItemInfo
}
/** 打开界面方式的配置数据 */
@@ -24,4 +26,5 @@ export var UIConfigData: { [key: number]: UIConfig } = {
[UIID.Netinstable]: { layer: LayerType.PopUp, prefab: "common/prefab/netinstable" },
[UIID.Window]: { layer: LayerType.Dialog, prefab: "common/prefab/window" },
[UIID.Role_Controller]: { layer: LayerType.UI, prefab: "gui/role_controller" },
[UIID.ItemInfo]: { layer: LayerType.UI, prefab: "gui/element/item_info" },
}