Using system agnostic image processing

This commit is contained in:
Lani Aung
2021-10-04 19:50:22 -06:00
parent 7dfa28674e
commit 3fc504a4f6
6 changed files with 83 additions and 50 deletions
+5 -1
View File
@@ -62,7 +62,6 @@ namespace fxl.codes.kisekae.Services
}
SetInitialPositions(model, initialPositions.ToString());
model.Reset();
if (string.IsNullOrEmpty(directory)) return model;
@@ -71,6 +70,11 @@ namespace fxl.codes.kisekae.Services
_fileParser.ParsePalette(directory, palette);
}
foreach (var cel in model.Cels)
{
_fileParser.ParseCel(directory, cel, model.Palettes);
}
return model;
}