- remove "Unique exported filenames" option (assets of the same name will always add a unique numeric identifier)

- add "Display all assets" option to support display all types assets and export the RAW file.(use .dat extension)
This commit is contained in:
Perfare
2016-08-13 08:20:38 +08:00
parent 03b2ab97d6
commit ff144b41eb
9 changed files with 117 additions and 66 deletions

View File

@ -25,13 +25,13 @@ namespace Unity_Studio.Properties {
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool uniqueNames {
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool displayAll {
get {
return ((bool)(this["uniqueNames"]));
return ((bool)(this["displayAll"]));
}
set {
this["uniqueNames"] = value;
this["displayAll"] = value;
}
}