添加新的UIWindow

main
Huliang 2026-06-24 16:50:54 +08:00
parent 91d237f643
commit 355fe9bf2e
5 changed files with 2430 additions and 0 deletions

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8f72967b045666240b45938987b2676f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 492ac973056bc1046b9127bc1b43f7f6
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -390,6 +390,9 @@ public class UIManager : UIManagerBase, IGlobal
_WindowMeta(UINameConst.UI_NPC, UICanvasLayer.Normal, UIVisibilityStrategy.Occlusion, CameraMode.Shut, true, needScreenshot: true);
_WindowMeta(UINameConst.UI_EnemyCharacter, UICanvasLayer.Normal, UIVisibilityStrategy.Occlusion, CameraMode.Shut, true, needScreenshot: true);
_WindowMeta(UINameConst.UI_NPCInfo, UICanvasLayer.Normal, UIVisibilityStrategy.Occlusion, CameraMode.Shut, true, needScreenshot: true);
//流式兑换弹窗
_WindowMeta(UINameConst.UI_FlowExChange,UICanvasLayer.Tips, UIVisibilityStrategy.Occlusion, CameraMode.Shut, true, true);
}
/// <summary>

View File

@ -566,4 +566,7 @@ public static class UINameConst
public static readonly string UI_NPC = "Camp/UI_NPC";
public static readonly string UI_EnemyCharacter = "Camp/UI_EnemyCharacter";
public static readonly string UI_NPCInfo = "Camp/UI_NPCInfo";
//流式兑换弹窗
public static readonly string UI_FlowExChange = "FlowExChange/UI_FlowExChange";
}