clearcoatNormalTexture property
Clearcoat tangent-space normal texture.
Implementation
TextureSource? get clearcoatNormalTexture => _clearcoatNormalTexture;
Implementation
set clearcoatNormalTexture(TextureSource? value) {
if (identical(_clearcoatNormalTexture, value)) return;
_clearcoatNormalTexture = value;
_markMaterialDataDirty(variant: true);
}