mpdecimate improvements, fix custom out path, lwi caching, alpha tests (wip)

This commit is contained in:
N00MKRAD
2025-03-23 19:36:57 +01:00
parent 15ad7f4316
commit e57a32d5b9
16 changed files with 167 additions and 87 deletions

View File

@@ -141,6 +141,14 @@ namespace Flowframes
{
IoUtils.TryDeleteIfExists(installerTempDir);
}
foreach (var cacheFile in IoUtils.GetFileInfosSorted(Paths.GetCachePath(), true))
{
if ((DateTime.Now - cacheFile.LastWriteTime).TotalDays > 3d)
{
IoUtils.TryDeleteIfExists(cacheFile.FullName);
}
}
}
catch (Exception e)
{