You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
659 B
23 lines
659 B
namespace Asset_Cleaner {
|
|
class Config {
|
|
// serialized
|
|
public bool MarkRed;
|
|
public string IgnorePathContainsCombined;
|
|
public bool ShowInfoBox;
|
|
public bool RebuildCacheOnDemand;
|
|
public bool UpdateUnusedAssetsOnDemand;
|
|
|
|
// todo make type array
|
|
public bool IgnoreMaterial;
|
|
public bool IgnoreScriptable;
|
|
public bool IgnoreSprite;
|
|
|
|
// serialized only while window is opened
|
|
public bool Locked;
|
|
|
|
// non-serialized
|
|
public string[] IgnorePathContains;
|
|
public string InitializationTime;
|
|
public bool PendingUpdateUnusedAssets;
|
|
}
|
|
}
|