/19
Jump to navigation
Jump to search
Drawing can be done using simple color blending modes:
| Name | Description |
|---|---|
| NONE | Overwrites all previous pixels in the area |
| OVERLAY | Writes on top of previous pixels, unless the pixel being drawn is transparent |
| AVERAGE | Takes the color average of the previous and new pixel being drawn |
| ADD | Adds the color values of the previous and new pixel being drawn |
| SUBTRACT | Subtracts the color difference of the previous and new pixel being drawn |
| MULTIPLY | Multiplies the color value of the previous and new pixel being drawn |