public final class SCNBlendMode
extends java.lang.Object
Blend modes that SCNMaterial uses to compose with the framebuffer to produce blended colors.
| Modifier and Type | Field and Description |
|---|---|
static long |
Add
Blends the source and destination colors by adding them up.
|
static long |
Alpha
Blends the source and destination colors by adding the source multiplied by source alpha and the destination multiplied by one minus source alpha.
|
static long |
Max
Max the destination with the source (ignores alpha).
|
static long |
Multiply
Blends the source and destination colors by multiplying them.
|
static long |
Replace
Replaces the destination with the source (ignores alpha).
|
static long |
Screen
Blends the source and destination colors by multiplying one minus the source with the destination and adding the source.
|
static long |
Subtract
Blends the source and destination colors by subtracting the source from the destination.
|
public static final long Alpha
public static final long Add
public static final long Subtract
public static final long Multiply
public static final long Screen
public static final long Replace
public static final long Max