|
@@ -11,6 +11,7 @@ namespace UI.League
|
|
|
public GLoader m_loaTitle;
|
|
|
public GTextField m_txtName;
|
|
|
public GTextField m_txtChatContent;
|
|
|
+ public GTextField m_txtTime;
|
|
|
public const string URL = "ui://tw70qm9dofwu8f";
|
|
|
public const string PACKAGE_NAME = "League";
|
|
|
public const string RES_NAME = "ListChatItemMine";
|
|
@@ -62,6 +63,7 @@ namespace UI.League
|
|
|
m_loaTitle = (GLoader)comp.GetChild("loaTitle");
|
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
|
m_txtChatContent = (GTextField)comp.GetChild("txtChatContent");
|
|
|
+ m_txtTime = (GTextField)comp.GetChild("txtTime");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -69,6 +71,7 @@ namespace UI.League
|
|
|
m_loaTitle = null;
|
|
|
m_txtName = null;
|
|
|
m_txtChatContent = null;
|
|
|
+ m_txtTime = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|