sheenRoughnessTexture property

TextureSource? get sheenRoughnessTexture

Sheen roughness texture.

Implementation

TextureSource? get sheenRoughnessTexture => _sheenRoughnessTexture;
set sheenRoughnessTexture (TextureSource? value)

Implementation

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