I\'m new to Lua and dealing with Lua as a scripting language in an alpha release of a program. The developer is unresponsive and I need to get a list of functions provided b
In Lua, to view the members of a object, you can use:
for key,value in pairs(o) do print("found member " .. key); end
Unfortunately I don't know if this will work for objects imported from C++.