LuaInterface.LuaTable.GetLuaFunction C# (CSharp) 메소드

GetLuaFunction() 공개 메소드

public GetLuaFunction ( string funcName ) : LuaFunction
funcName string
리턴 LuaFunction
		public LuaFunction GetLuaFunction(string funcName) { return null;}
	}

Usage Example

예제 #1
0
        //LuaFunction _call = null;

        public LuaBeatEvent(LuaTable table)
        {
            self     = table;
            luaState = table.GetLuaState();
            self.AddRef();

            _add    = self.GetLuaFunction("Add");
            _remove = self.GetLuaFunction("Remove");
            //_call = self.GetLuaFunction("__call");
        }
All Usage Examples Of LuaInterface.LuaTable::GetLuaFunction