Inheritance: MonoBehaviour, IVertexModifier
 static public int ModifyMesh(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (matchType(l, argc, 2, typeof(UnityEngine.Mesh)))
         {
             UnityEngine.UI.Extensions.UIFlippable self = (UnityEngine.UI.Extensions.UIFlippable)checkSelf(l);
             UnityEngine.Mesh a1;
             checkType(l, 2, out a1);
             self.ModifyMesh(a1);
             return(0);
         }
         else if (matchType(l, argc, 2, typeof(UnityEngine.UI.VertexHelper)))
         {
             UnityEngine.UI.Extensions.UIFlippable self = (UnityEngine.UI.Extensions.UIFlippable)checkSelf(l);
             UnityEngine.UI.VertexHelper           a1;
             checkType(l, 2, out a1);
             self.ModifyMesh(a1);
             return(0);
         }
         return(error(l, "No matched override function to call"));
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int get_vertical(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.UIFlippable self = (UnityEngine.UI.Extensions.UIFlippable)checkSelf(l);
         pushValue(l, self.vertical);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_vertical(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.UIFlippable self = (UnityEngine.UI.Extensions.UIFlippable)checkSelf(l);
         bool v;
         checkType(l, 2, out v);
         self.vertical = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }