thicknessTexture property
Volume thickness texture.
Implementation
TextureSource? get thicknessTexture => _thicknessTexture;
Implementation
set thicknessTexture(TextureSource? value) {
if (identical(_thicknessTexture, value)) return;
_thicknessTexture = value;
_markMaterialDataDirty(variant: true);
}