LuaInterface.LuaTable.GetLuaFunction C# (CSharp) Method

GetLuaFunction() public method

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

Usage Example

Beispiel #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