|
@@ -9,6 +9,7 @@ namespace UI.Main
|
|
|
public GComponent target;
|
|
|
public UI_ComSkillShow m_comSkillShow;
|
|
|
public Transition m_t1;
|
|
|
+ public Transition m_t2;
|
|
|
public const string URL = "ui://mfvz4q8kpy009l";
|
|
|
public const string PACKAGE_NAME = "Main";
|
|
|
public const string RES_NAME = "StorySkillUI";
|
|
@@ -58,12 +59,14 @@ namespace UI.Main
|
|
|
{
|
|
|
m_comSkillShow = (UI_ComSkillShow)UI_ComSkillShow.Create(comp.GetChild("comSkillShow"));
|
|
|
m_t1 = comp.GetTransition("t1");
|
|
|
+ m_t2 = comp.GetTransition("t2");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
m_comSkillShow.Dispose();
|
|
|
m_comSkillShow = null;
|
|
|
m_t1 = null;
|
|
|
+ m_t2 = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|