-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Milestone
Description
Render an other texture onto the current texture with different blend modes (idea by @b2renger).
PGraphics texture1;
PGraphics texture2;
fx.render(texture1)
.brightnessContrast(0.1f, 1.0f)
.blend(BlendMode.SCREEN, texture2)
.compose(passResult);Here a list of different blend modes: