iridescenceTexture property
Iridescence weight texture.
Implementation
TextureSource? get iridescenceTexture => _iridescenceTexture;
Implementation
set iridescenceTexture(TextureSource? value) {
if (identical(_iridescenceTexture, value)) return;
_iridescenceTexture = value;
_markMaterialDataDirty(variant: true);
}