diff --git a/ContentPatcher/Framework/Conditions/PatchImageMode.cs b/ContentPatcher/Framework/Conditions/PatchImageMode.cs index a1755c619..9d719f21c 100644 --- a/ContentPatcher/Framework/Conditions/PatchImageMode.cs +++ b/ContentPatcher/Framework/Conditions/PatchImageMode.cs @@ -9,5 +9,8 @@ public enum PatchImageMode Replace = PatchMode.Replace, /// Draw the new content over the original content, so the original content shows through any transparent or semi-transparent pixels. - Overlay = PatchMode.Overlay + Overlay = PatchMode.Overlay, + + /// Masks the original content so that the alpha value of every pixel in the new content gets subtracted from the corresponding pixel in the original content. + Mask = PatchMode.Mask }