示例#1
0
 public static ZipConfigs CreateInstance()
 {
     if (_instance == null)
     {
         _instance = HugulaSetting.CreateInstance <ZipConfigs>();
         AssetDatabase.CreateAsset(_instance, "Assets/Hugula/Config/Resources/zip_file_list.asset");
     }
     return(_instance);
 }
示例#2
0
 static public int get_backupResType(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         pushValue(l, true);
         pushEnum(l, (int)self.backupResType);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#3
0
 static public int get_spliteExtensionFolder(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.spliteExtensionFolder);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#4
0
 static public int get_appendCrcToFile(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.appendCrcToFile);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#5
0
 static public int get_inclusionVariants(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.inclusionVariants);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#6
0
 static public int constructor(IntPtr l)
 {
     try {
         Hugula.HugulaSetting o;
         o = new Hugula.HugulaSetting();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#7
0
 static public int set_backupResType(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         Hugula.CopyResType   v;
         checkEnum(l, 2, out v);
         self.backupResType = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#8
0
 static public int set_spliteExtensionFolder(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         System.Boolean       v;
         checkType(l, 2, out v);
         self.spliteExtensionFolder = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#9
0
 static public int AddVariant(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         System.String        a1;
         checkType(l, 2, out a1);
         self.AddVariant(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#10
0
 static public int set_allVariants(IntPtr l)
 {
     try {
         Hugula.HugulaSetting self = (Hugula.HugulaSetting)checkSelf(l);
         System.Collections.Generic.List <System.String> v;
         checkType(l, 2, out v);
         self.allVariants = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }