|
|
@@ -2,7 +2,15 @@ using System.Collections;
|
|
|
using System.Collections.Generic;
|
|
|
using UnityEngine;
|
|
|
|
|
|
+[System.Serializable]
|
|
|
+public class RG_Ignore_Info
|
|
|
+{
|
|
|
+ [SerializeField]
|
|
|
+ public string Field;
|
|
|
+ [SerializeField]
|
|
|
+ public bool IsIgnore;
|
|
|
|
|
|
+}
|
|
|
|
|
|
[CreateAssetMenuAttribute(fileName = "ResInfo", menuName = "EditorConfig/创建检测资源更新配置文件ResInfo")]
|
|
|
public class ResInfo : ScriptableObject
|
|
|
@@ -24,6 +32,7 @@ public class ResInfo : ScriptableObject
|
|
|
public string ResVersion = "0.1.0.0";
|
|
|
|
|
|
public List<string> IgnoreFiles;
|
|
|
+ public List<RG_Ignore_Info> rG_Ignore_Infos;
|
|
|
|
|
|
public int ChangeNum;
|
|
|
public bool IsIgnore = true;
|