...
There are two possible blending modes for the layers:
BlendMode_Normal
: the resulting value islayer*opacity + existing*(1 - opacity)
.BlendMode_Additive
: additive blending, where the existing value is not multiplied by(1 - opacity)
.
...
...
There are two possible blending modes for the layers:
BlendMode_Normal
: the resulting value is layer*opacity + existing*(1 - opacity)
.BlendMode_Additive
: additive blending, where the existing value is not multiplied by (1 - opacity)
....