|
@@ -18,6 +18,7 @@ namespace UI.Card
|
|
|
public GLoader m_loaGuide;
|
|
|
public Transition m_t0;
|
|
|
public Transition m_t1;
|
|
|
+ public Transition m_open;
|
|
|
public const string URL = "ui://7l6lvkayojlzj";
|
|
|
public const string PACKAGE_NAME = "Card";
|
|
|
public const string RES_NAME = "CardFosterUI";
|
|
@@ -76,6 +77,7 @@ namespace UI.Card
|
|
|
m_loaGuide = (GLoader)comp.GetChild("loaGuide");
|
|
|
m_t0 = comp.GetTransition("t0");
|
|
|
m_t1 = comp.GetTransition("t1");
|
|
|
+ m_open = comp.GetTransition("open");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -94,6 +96,7 @@ namespace UI.Card
|
|
|
m_loaGuide = null;
|
|
|
m_t0 = null;
|
|
|
m_t1 = null;
|
|
|
+ m_open = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|