1
0
mirror of synced 2024-11-27 17:00:50 +01:00

Only update compression for uncompressed external types

This commit is contained in:
KillzXGaming 2023-06-02 16:50:44 -04:00
parent 826a96b265
commit d302c38563

View File

@ -815,11 +815,14 @@ namespace FirstPlugin
{
//Ensure it uses mc compressor for save
this.IFileInfo.FileIsCompressed = true;
// this.IFileInfo.FileCompression = new MeshCodecFormat();
if (!this.FileName.EndsWith(".mc"))
this.FileName += ".mc";
if (!this.FilePath.EndsWith(".mc"))
this.FilePath += ".mc";
if (this.IFileInfo.FileCompression == null)
{
// this.IFileInfo.FileCompression = new MeshCodecFormat();
if (!this.FileName.EndsWith(".mc"))
this.FileName += ".mc";
if (!this.FilePath.EndsWith(".mc"))
this.FilePath += ".mc";
}
}
if (externalFlags.HasFlag(MeshCodec.ExternalFlags.HasExternalString))
MeshCodec.Prepare();