clearcoatNormalTexture property

TextureSource? get clearcoatNormalTexture

Clearcoat tangent-space normal texture.

Implementation

TextureSource? get clearcoatNormalTexture => _clearcoatNormalTexture;
set clearcoatNormalTexture (TextureSource? value)

Implementation

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