Im using LuaObjcBridge and I'm calling a method from Lua like this:
local position = owner:position()
In objective-c this returns a CGPoint struct with X and Y which the bridge converts into Userdata. So CGPoint struct -> Lua userdata. In Lua how would I access the X and Y values from the Userdata?