Merge branch 'main' into dev

This commit is contained in:
Razmoth
2023-09-22 20:58:30 +04:00
committed by GitHub
7 changed files with 80 additions and 9 deletions

View File

@@ -1344,6 +1344,14 @@ namespace AssetStudioGUI
sceneHierarchy.Text = "Scene hierarchy";
sceneHierarchy.Click += sceneHierarchy_Click;
//
// enableFileLogging
//
this.enableFileLogging.CheckOnClick = true;
this.enableFileLogging.Name = "enableFileLogging";
this.enableFileLogging.Size = new System.Drawing.Size(191, 22);
this.enableFileLogging.Text = "Enable file logging";
this.enableFileLogging.CheckedChanged += new System.EventHandler(this.enableFileLogging_CheckedChanged);
//
// AssetStudioGUIForm
//
AllowDrop = true;

View File

@@ -31,7 +31,7 @@ namespace AssetStudioGUI
action(message);
break;
}
return message;
}
}
}

View File

@@ -501,5 +501,35 @@ namespace AssetStudioGUI.Properties {
this["enableVerbose"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool exportUV0UV1
{
get
{
return ((bool)(this["exportUV0UV1"]));
}
set
{
this["exportUV0UV1"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool isFileLogging
{
get
{
return ((bool)(this["isFileLogging"]));
}
set
{
this["isFileLogging"] = value;
}
}
}
}