text
stringlengths
0
8.81k
Pixel values are subtracted componentwise (destination - source).
MIN
number
Pixel values are given to the minimum function (min(source, destination)).
This equation operates on each pixel color component.
MAX
number
Pixel values are given to the maximum function (max(source, destination)).
This equation operates on each pixel color component.
constant BlendFunction : number
engine/Source/Scene/BlendFunction.js 8
Determines how blending factors are computed.
Properties:
Name
Type
Description
ZERO
number
The blend factor is zero.
ONE
number
The blend factor is one.
SOURCE_COLOR
number
The blend factor is the source color.
ONE_MINUS_SOURCE_COLOR
number
The blend factor is one minus the source color.
DESTINATION_COLOR
number
The blend factor is the destination color.
ONE_MINUS_DESTINATION_COLOR
number
The blend factor is one minus the destination color.
SOURCE_ALPHA
number
The blend factor is the source alpha.
ONE_MINUS_SOURCE_ALPHA
number