|
@@ -16,8 +16,10 @@ namespace UI.Studio
|
|
public GImage m_imgLockBg;
|
|
public GImage m_imgLockBg;
|
|
public GImage m_imgLock;
|
|
public GImage m_imgLock;
|
|
public GGroup m_grpLock;
|
|
public GGroup m_grpLock;
|
|
|
|
+ public GGroup m_Panel;
|
|
public Transition m_ToLeft;
|
|
public Transition m_ToLeft;
|
|
public Transition m_ToRight;
|
|
public Transition m_ToRight;
|
|
|
|
+ public Transition m_Left;
|
|
public const string URL = "ui://xz8kxrecv4822p";
|
|
public const string URL = "ui://xz8kxrecv4822p";
|
|
public const string PACKAGE_NAME = "Studio";
|
|
public const string PACKAGE_NAME = "Studio";
|
|
public const string RES_NAME = "ListLevelItem";
|
|
public const string RES_NAME = "ListLevelItem";
|
|
@@ -74,8 +76,10 @@ namespace UI.Studio
|
|
m_imgLockBg = (GImage)comp.GetChild("imgLockBg");
|
|
m_imgLockBg = (GImage)comp.GetChild("imgLockBg");
|
|
m_imgLock = (GImage)comp.GetChild("imgLock");
|
|
m_imgLock = (GImage)comp.GetChild("imgLock");
|
|
m_grpLock = (GGroup)comp.GetChild("grpLock");
|
|
m_grpLock = (GGroup)comp.GetChild("grpLock");
|
|
|
|
+ m_Panel = (GGroup)comp.GetChild("Panel");
|
|
m_ToLeft = comp.GetTransition("ToLeft");
|
|
m_ToLeft = comp.GetTransition("ToLeft");
|
|
m_ToRight = comp.GetTransition("ToRight");
|
|
m_ToRight = comp.GetTransition("ToRight");
|
|
|
|
+ m_Left = comp.GetTransition("Left");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
@@ -89,8 +93,10 @@ namespace UI.Studio
|
|
m_imgLockBg = null;
|
|
m_imgLockBg = null;
|
|
m_imgLock = null;
|
|
m_imgLock = null;
|
|
m_grpLock = null;
|
|
m_grpLock = null;
|
|
|
|
+ m_Panel = null;
|
|
m_ToLeft = null;
|
|
m_ToLeft = null;
|
|
m_ToRight = null;
|
|
m_ToRight = null;
|
|
|
|
+ m_Left = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|