|
@@ -9,10 +9,10 @@ namespace UI.Studio
|
|
public GComponent target;
|
|
public GComponent target;
|
|
public Controller m_star;
|
|
public Controller m_star;
|
|
public GTextField m_txtTitle;
|
|
public GTextField m_txtTitle;
|
|
- public GLoader m_loaBg;
|
|
|
|
public GLoader m_loaName;
|
|
public GLoader m_loaName;
|
|
public GTextField m_txtName;
|
|
public GTextField m_txtName;
|
|
public GLoader m_loaIcon;
|
|
public GLoader m_loaIcon;
|
|
|
|
+ public GLoader m_loaBg;
|
|
public GImage m_imgLockBg;
|
|
public GImage m_imgLockBg;
|
|
public GImage m_imgLock;
|
|
public GImage m_imgLock;
|
|
public Transition m_test;
|
|
public Transition m_test;
|
|
@@ -65,10 +65,10 @@ namespace UI.Studio
|
|
{
|
|
{
|
|
m_star = comp.GetController("star");
|
|
m_star = comp.GetController("star");
|
|
m_txtTitle = (GTextField)comp.GetChild("txtTitle");
|
|
m_txtTitle = (GTextField)comp.GetChild("txtTitle");
|
|
- m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
|
|
m_loaName = (GLoader)comp.GetChild("loaName");
|
|
m_loaName = (GLoader)comp.GetChild("loaName");
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
m_loaIcon = (GLoader)comp.GetChild("loaIcon");
|
|
m_loaIcon = (GLoader)comp.GetChild("loaIcon");
|
|
|
|
+ m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
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_test = comp.GetTransition("test");
|
|
m_test = comp.GetTransition("test");
|
|
@@ -77,10 +77,10 @@ namespace UI.Studio
|
|
{
|
|
{
|
|
m_star = null;
|
|
m_star = null;
|
|
m_txtTitle = null;
|
|
m_txtTitle = null;
|
|
- m_loaBg = null;
|
|
|
|
m_loaName = null;
|
|
m_loaName = null;
|
|
m_txtName = null;
|
|
m_txtName = null;
|
|
m_loaIcon = null;
|
|
m_loaIcon = null;
|
|
|
|
+ m_loaBg = null;
|
|
m_imgLockBg = null;
|
|
m_imgLockBg = null;
|
|
m_imgLock = null;
|
|
m_imgLock = null;
|
|
m_test = null;
|
|
m_test = null;
|