Is there a way to overload metamethods in a derived class? I'm working on a UI project where all UI elements inherit from a base Widget class that is implemented natively. I would like to be able to use metamethods for set/get type functionality for properties, but still call the base class so it can handle properties as well for those that the derived class does not.
--Z