alphaCutoff property

double get alphaCutoff

Alpha-test threshold used when alphaMode is AlphaMode.mask: fragments whose alpha falls below this are discarded.

Implementation

double get alphaCutoff => _alphaCutoff;
set alphaCutoff (double value)

Implementation

set alphaCutoff(double value) {
  _alphaCutoff = value;
  _markMaterialDataDirty();
}