mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 06:13:45 +01:00
DT material editor, main part
This commit is contained in:
parent
450751e43f
commit
36ab9573ae
21 changed files with 2744 additions and 2286 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue