Suppose I paint with opacity 50%, with the pixel engine (wash mode). As we know, until you lift the pen, drawing twice on the same pixel does not make it more opaque:

But as I lift the pen, if I draw over the old pixels, the overlap becomes visible:
So, lifting the pen has a very special meaning with the pixel engine.
Now, in order to better simulate watercolor style, I don’t want this behavior. I want no overlap even after I lift the pen
So I can build a single, trasparent shape with many strokes, with no overlap. And then I would need a shortcut, by which I could say “ok, now I’ve finished building my shape. Now it’s ok to start overlapping old pixels”. (Intuitively, the meaning of this shortcut is “dry the paper”.)
Is this very hard to implement?
Note: I could simulate this by creating a layer with 50% opacity, and then drawing with 100% opacity on this layer, and then , when I finished the shape, merging down the layer. But this is cumbersome. It would be much easier if the pen lifting stopped doing what it’s doing, and we had a shortcut to simulate lifting the pen. (“dry the paper”)
Thanks
