static public int set_Rect(IntPtr l)
 {
     try {
         LBoot.ShowStatsBehaviour self = (LBoot.ShowStatsBehaviour)checkSelf(l);
         UnityEngine.Rect         v;
         checkValueType(l, 2, out v);
         self.Rect = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_f_UpdateInterval(IntPtr l)
 {
     try {
         LBoot.ShowStatsBehaviour self = (LBoot.ShowStatsBehaviour)checkSelf(l);
         System.Single            v;
         checkType(l, 2, out v);
         self.f_UpdateInterval = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_CustomStats(IntPtr l)
 {
     try {
         LBoot.ShowStatsBehaviour self = (LBoot.ShowStatsBehaviour)checkSelf(l);
         string v;
         checkType(l, 2, out v);
         self.CustomStats = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_Image(IntPtr l)
 {
     try {
         LBoot.ShowStatsBehaviour self = (LBoot.ShowStatsBehaviour)checkSelf(l);
         UnityEngine.Texture      v;
         checkType(l, 2, out v);
         self.Image = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_UpdateDetailed(IntPtr l)
 {
     try {
         LBoot.ShowStatsBehaviour self = (LBoot.ShowStatsBehaviour)checkSelf(l);
         bool v;
         checkType(l, 2, out v);
         self.UpdateDetailed = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }