alphaMode property

AlphaMode get alphaMode

How the material's alpha is interpreted; see AlphaMode.

AlphaMode.blend always routes the material through the translucent pass regardless of baseColorFactor's alpha.

Implementation

AlphaMode get alphaMode => _alphaMode;
set alphaMode (AlphaMode value)

Implementation

set alphaMode(AlphaMode value) {
  if (_alphaMode == value) return;
  _alphaMode = value;
  _markMaterialDataDirty();
}