|
@@ -10,6 +10,8 @@ namespace UI.OpenServerActivity
|
|
|
public Controller m_storyImageType;
|
|
|
public Controller m_posType;
|
|
|
public GTextField m_txtTitle;
|
|
|
+ public GTextField m_txtNumber;
|
|
|
+ public GTextField m_txtNotOpenTitle;
|
|
|
public const string URL = "ui://b8ha2mnsebioi";
|
|
|
public const string PACKAGE_NAME = "OpenServerActivity";
|
|
|
public const string RES_NAME = "StoryItem";
|
|
@@ -60,12 +62,16 @@ namespace UI.OpenServerActivity
|
|
|
m_storyImageType = comp.GetController("storyImageType");
|
|
|
m_posType = comp.GetController("posType");
|
|
|
m_txtTitle = (GTextField)comp.GetChild("txtTitle");
|
|
|
+ m_txtNumber = (GTextField)comp.GetChild("txtNumber");
|
|
|
+ m_txtNotOpenTitle = (GTextField)comp.GetChild("txtNotOpenTitle");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
m_storyImageType = null;
|
|
|
m_posType = null;
|
|
|
m_txtTitle = null;
|
|
|
+ m_txtNumber = null;
|
|
|
+ m_txtNotOpenTitle = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|