LambertMaterial.Transparency

LambertMaterial.Transparency property

Gets or sets the transparency factor. The factor should be ranged between 0(0%, fully opaque) and 1(100%, fully transparent) Any invalid factor value will be clamped.

public double Transparency { get; set; }

Property Value

The

var mat = new LambertMaterial();
mat.Transparency = 0.3;
var mat = new LambertMaterial();
mat.setTransparency(0.3);

transparency factor.

See Also