Is there any way of getting all the non-nil parameters / properties of an object? I found this: getmetadata(self.xxxx) and i am looking for something like: ge
getmetadata(self.xxxx)
ge
I believe objects are just a table, so you should be able to iterate over the properties as any other table:
for i,v in ipairs(your_object) do body end