lua-intf
lua-intf copied to clipboard
A binding between C++11 and Lua language
I just wrote [Svar, A Tiny Modern C++ Header Brings Unified Interface for Different Languages](https://github.com/zdzhaoyong/Svar), and it now supports binding C++11 to Python and Node.JS. Would you please help me...
It would be nice if this library could support Lua 5.4. The relevant API changes seem not so bad: > https://www.lua.org/manual/5.4/manual.html#8.3
Hello, for the last 2 days I've been trying to figure out how I can use custom C++ library from within Lua and stumbled upon this wrapper, which looks like...
lua_isinteger is missing in LuaState, there should be function. It might also be practical to use it in other places like TypeMAP for conversion.
I want to save a Lua of an object in c++. How to define the rest of the future can be used g_p --- Cpp: G_p luaobj; Cppsave (luaobj \*...
I set a lua function as a callback in C++. In a child thread ,I call a "run_in_main_thread" function , to call this callback in main thread. (because this callback...
Hi, Its possible to make unlimited parameters like for printf in LuaIntf? For example: ``` LuaBinding(luaContext).addFunction("printf", &printf) ``` I found this: http://lua-users.org/wiki/LuaPrintf And i think is possible to make that....
Hi! I'm compiling my project with high warning level (/W4) on Visual C++ and getting bunch of warning for unused arguments of methods inside of guts of your library. `...
未定义标识符 (unable to identify identifier) .addFunction("setTileGID", LUA_FN(void, setTileGID, uint32_t, Vec2)) I wanna just register a overload function, the error showed up
I'm attempting to get the pointer of C++ object created in Lua. This is Lua script example: ``` objecttest = Image("file.png") ``` How I get this object pointer in C++:...