fadeEnd property

double get fadeEnd

Radial distance from the mesh origin, in the mesh's local units, where the overlay reaches zero, so the plane has no hard visible edge.

A fadeEnd at or below fadeStart (the default 0/0) disables the fade. Size both to the catcher mesh: for a unit plane scaled by its node, values around half the mesh's local extent for fadeStart and the full extent for fadeEnd keep the falloff inside the geometry.

Implementation

double get fadeEnd => _fadeEnd;
set fadeEnd (double value)

Implementation

set fadeEnd(double value) {
  _fadeEnd = value;
  _paramsDirty = true;
}