DT material editor, main part

This commit is contained in:
Exter-N 2024-08-03 17:41:38 +02:00
parent 450751e43f
commit 36ab9573ae
21 changed files with 2744 additions and 2286 deletions

View file

@ -327,6 +327,9 @@ public class SettingsTab : ITab, IUiService
UiHelpers.DefaultLineSpace();
DrawModHandlingSettings();
UiHelpers.DefaultLineSpace();
DrawModEditorSettings();
ImGui.NewLine();
}
@ -723,6 +726,15 @@ public class SettingsTab : ITab, IUiService
"Set the default Penumbra mod folder to place newly imported mods into.\nLeave blank to import into Root.");
}
/// <summary> Draw all settings pertaining to advanced editing of mods. </summary>
private void DrawModEditorSettings()
{
Checkbox("Advanced Editing: Edit Raw Tile UV Transforms",
"Edit the raw matrix components of tile UV transforms, instead of having them decomposed into scale, rotation and shear.",
_config.EditRawTileTransforms, v => _config.EditRawTileTransforms = v);
}
#endregion
/// <summary> Draw the entire Color subsection. </summary>