thicknessTexture property

TextureSource? get thicknessTexture

Volume thickness texture.

Implementation

TextureSource? get thicknessTexture => _thicknessTexture;
set thicknessTexture (TextureSource? value)

Implementation

set thicknessTexture(TextureSource? value) {
  if (identical(_thicknessTexture, value)) return;
  _thicknessTexture = value;
  _markMaterialDataDirty(variant: true);
}