From 929a152e580cce9bd5aff7fba49a550f70933ef6 Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 27 Jan 2021 18:44:29 +0800 Subject: +AI --- Client/Assets/Scripts/XMainClient/UI/UICommon/DlgBase.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Client/Assets/Scripts/XMainClient/UI/UICommon') diff --git a/Client/Assets/Scripts/XMainClient/UI/UICommon/DlgBase.cs b/Client/Assets/Scripts/XMainClient/UI/UICommon/DlgBase.cs index 234b0f2c..0d90e4b0 100644 --- a/Client/Assets/Scripts/XMainClient/UI/UICommon/DlgBase.cs +++ b/Client/Assets/Scripts/XMainClient/UI/UICommon/DlgBase.cs @@ -6,6 +6,7 @@ using XUtliPoolLib; namespace XMainClient.UI.UICommon { + //c 界面逻辑控制器基类 public abstract class DlgBase : IXUIDlg, IDlgHandlerMgr where TDlgClass : IXUIDlg, new() where TUIBehaviour : DlgBehaviourBase { public static TDlgClass singleton @@ -580,6 +581,8 @@ namespace XMainClient.UI.UICommon private void OnLoadUIFinishedEventHandler(string location) { + Debug.Log("加载界面prfab: " + location); + //c 加载prefab GameObject gameObject = XSingleton.singleton.CreateFromPrefab("UI/" + location, true, false) as GameObject; bool flag = null != gameObject; if (flag) @@ -587,8 +590,8 @@ namespace XMainClient.UI.UICommon gameObject.transform.parent = XSingleton.singleton.UIRoot; gameObject.transform.localPosition = new Vector3(0f, 0f, 0f); gameObject.transform.localScale = new Vector3(1f, 1f, 1f); - this.m_uiBehaviour = gameObject.AddComponent(); - this.m_uiBehaviour.uiDlgInterface = this; + this.m_uiBehaviour = gameObject.AddComponent(); //c 这里给界面挂上对应的脚本 + this.m_uiBehaviour.uiDlgInterface = this; bool flag2 = !this.m_bBindedReverse; if (flag2) { -- cgit v1.1-26-g67d0