mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-23 00:07:53 +01:00
Add Filesystem Compression as a toggle and button. Also some auto-formatting.
This commit is contained in:
parent
e26873934b
commit
4e704770cb
21 changed files with 385 additions and 344 deletions
|
|
@ -5,6 +5,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using OtterGui;
|
||||
using OtterGui.Compression;
|
||||
using Penumbra.GameData.Enums;
|
||||
using Penumbra.GameData.Files;
|
||||
using Penumbra.Mods.Editor;
|
||||
|
|
@ -26,10 +27,10 @@ public partial class MdlMaterialEditor
|
|||
public MdlMaterialEditor(ModFileCollection files)
|
||||
=> _files = files;
|
||||
|
||||
public void SaveAllModels()
|
||||
public void SaveAllModels(FileCompactor compactor)
|
||||
{
|
||||
foreach (var info in _modelFiles)
|
||||
info.Save();
|
||||
info.Save(compactor);
|
||||
}
|
||||
|
||||
public void RestoreAllModels()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue