Fix blend mode serialization and de-serialization to match (#400)

This commit is contained in:
mfish33
2021-12-06 11:39:40 -08:00
committed by Keavon Chambers
parent 20a4c76fd7
commit b854814076
3 changed files with 49 additions and 49 deletions
+16 -16
View File
@@ -194,22 +194,22 @@ function newPath(input: any): BigUint64Array {
}
export type BlendMode =
| "normal"
| "multiply"
| "darken"
| "color-burn"
| "screen"
| "lighten"
| "color-dodge"
| "overlay"
| "soft-light"
| "hard-light"
| "difference"
| "exclusion"
| "hue"
| "saturation"
| "color"
| "luminosity";
| "Normal"
| "Multiply"
| "Darken"
| "ColorBurn"
| "Screen"
| "Lighten"
| "ColorDodge"
| "Overlay"
| "SoftLight"
| "HardLight"
| "Difference"
| "Exclusion"
| "Hue"
| "Saturation"
| "Color"
| "Luminosity";
export class LayerPanelEntry {
name!: string;