少年修仙传客户端基础资源
client_Wu Xijin
2018-10-26 27e2d92d0aa7c66f9d84eddaaf8bf3619a1ebfec
Assets/XLua/Gen/SnxxzUIPlayerSuitModelWrap.cs
@@ -21,12 +21,13 @@
        {
         ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
         System.Type type = typeof(Snxxz.UI.PlayerSuitModel);
         Utils.BeginObjectRegister(type, L, translator, 0, 40, 8, 2);
         Utils.BeginObjectRegister(type, L, translator, 0, 41, 8, 2);
         
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBeforePlayerDataInitialize", _m_OnBeforePlayerDataInitialize);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAfterPlayerDataInitialize", _m_OnAfterPlayerDataInitialize);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnPlayerLoginOk", _m_OnPlayerLoginOk);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetJumpModel", _m_SetJumpModel);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetEquipOrderlist", _m_GetEquipOrderlist);
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetServerSuitModel", _m_GetServerSuitModel);
@@ -231,6 +232,34 @@
        }
        
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_SetJumpModel(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                Snxxz.UI.PlayerSuitModel gen_to_be_invoked = (Snxxz.UI.PlayerSuitModel)translator.FastGetCSObj(L, 1);
                {
                    int _suitType = LuaAPI.xlua_tointeger(L, 2);
                    gen_to_be_invoked.SetJumpModel( _suitType );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_UnInit(RealStatePtr L)
        {
          try {