specularColorTexture property
Dielectric specular color texture.
Implementation
TextureSource? get specularColorTexture => _specularColorTexture;
Implementation
set specularColorTexture(TextureSource? value) {
if (identical(_specularColorTexture, value)) return;
_specularColorTexture = value;
_markMaterialDataDirty(variant: true);
}