From eafd6cb0118f2732a50b2ae8c6e3f95eac1370d7 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期三, 26 六月 2019 16:22:36 +0800
Subject: [PATCH] 7539 子 【开发】【2.0.100】增加自由设置技能释放顺序 / 【前端】【2.0.100】增加自由设置技能释放顺序

---
 Lua/Gen/LoadingBackGroundConfigWrap.cs |   32 +++++++++++++++++++++++++++++++-
 1 files changed, 31 insertions(+), 1 deletions(-)

diff --git a/Lua/Gen/LoadingBackGroundConfigWrap.cs b/Lua/Gen/LoadingBackGroundConfigWrap.cs
index e24b256..130a56c 100644
--- a/Lua/Gen/LoadingBackGroundConfigWrap.cs
+++ b/Lua/Gen/LoadingBackGroundConfigWrap.cs
@@ -21,7 +21,7 @@
         {
 			ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
 			System.Type type = typeof(LoadingBackGroundConfig);
-			Utils.BeginObjectRegister(type, L, translator, 0, 1, 6, 0);
+			Utils.BeginObjectRegister(type, L, translator, 0, 1, 8, 0);
 			
 			Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnConfigParseCompleted", _m_OnConfigParseCompleted);
 			
@@ -29,6 +29,8 @@
 			Utils.RegisterFunc(L, Utils.GETTER_IDX, "id", _g_get_id);
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "lineId", _g_get_lineId);
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "icons", _g_get_icons);
+            Utils.RegisterFunc(L, Utils.GETTER_IDX, "jobIntroduce1", _g_get_jobIntroduce1);
+            Utils.RegisterFunc(L, Utils.GETTER_IDX, "jobIntroduce2", _g_get_jobIntroduce2);
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "levelLimit", _g_get_levelLimit);
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "name", _g_get_name);
             Utils.RegisterFunc(L, Utils.GETTER_IDX, "description", _g_get_description);
@@ -361,6 +363,34 @@
         }
         
         [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
+        static int _g_get_jobIntroduce1(RealStatePtr L)
+        {
+		    try {
+                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
+			
+                LoadingBackGroundConfig gen_to_be_invoked = (LoadingBackGroundConfig)translator.FastGetCSObj(L, 1);
+                translator.Push(L, gen_to_be_invoked.jobIntroduce1);
+            } catch(System.Exception gen_e) {
+                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
+            }
+            return 1;
+        }
+        
+        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
+        static int _g_get_jobIntroduce2(RealStatePtr L)
+        {
+		    try {
+                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
+			
+                LoadingBackGroundConfig gen_to_be_invoked = (LoadingBackGroundConfig)translator.FastGetCSObj(L, 1);
+                translator.Push(L, gen_to_be_invoked.jobIntroduce2);
+            } catch(System.Exception gen_e) {
+                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
+            }
+            return 1;
+        }
+        
+        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
         static int _g_get_levelLimit(RealStatePtr L)
         {
 		    try {

--
Gitblit v1.8.0