string mMapName;        //地图名
    public void Init(mTonBehaviour s)
    {
        btn_ok = (UIEventListener)s.get_object("btn_ok", "UIEventListener");

        mType = s.get_int("mType");

        mMapName = s.get_string("mMapName");
    }
 UIEventListener btn_login;          //登录按钮
 public void Init(mTonBehaviour s)
 {
     btn_login = (UIEventListener)s.get_object("btn_login", "UIEventListener");
 }
示例#3
0
 GameObject mModel_0;                //1 v 1 模式
 public void Init(mTonBehaviour s)
 {
     mModel_0 = (GameObject)s.get_object("mModel_0", "GameObject");
 }
    GameObject mGoLoginFrame;   //登录界面
    public void Init(mTonBehaviour s)
    {
        mUIRoot = (UIRoot)s.get_object("mUIRoot", "UIRoot");

        mGoLoginFrame = (GameObject)s.get_object("mGoLoginFrame", "GameObject");
    }