Lua – Reflection – Get list of functions/fields on an object?
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++.