static public int get_YCrop(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.UIImageCrop self = (UnityEngine.UI.Extensions.UIImageCrop)checkSelf(l);
         pushValue(l, self.YCrop);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int SetMaterial(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.UIImageCrop self = (UnityEngine.UI.Extensions.UIImageCrop)checkSelf(l);
         self.SetMaterial();
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_XCrop(IntPtr l)
 {
     try {
         UnityEngine.UI.Extensions.UIImageCrop self = (UnityEngine.UI.Extensions.UIImageCrop)checkSelf(l);
         System.Single v;
         checkType(l, 2, out v);
         self.XCrop = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }