如何使用 Luabridge(1.0.2) 将函数从 LUA 传递到 C++
local Callback=function()
print("Inside Callback function!");
end
然后将该回调传递给 c++:
self.Background:On("Click",Callback)
“点击”是 const std::string&,但是如何将回调定义为函数?我尝试了一些方法(void*,std::function),但这些方法都不能正常工作。