Is there a way to “blend two colors with a blend m...
# compose
e
Is there a way to “blend two colors with a blend mode” and get another color? Like
colorB.blend(colorA, BlendMode.Multiply)
, I know I can drawRect both colors with the blendMode but I dont want to have to use a draw modifier.
z
lerp? It doesn't take a blend mode though
e
Yeah not lerp 😞. There is no API in compose to do that so I just went with two drawRects instead.
z
I’d file a feature request
1