LambertMaterial.TransparentColor

LambertMaterial.TransparentColor property

Gets or sets the transparent color.

public Vector3 TransparentColor { get; set; }

Property Value

The

var mat = new LambertMaterial();
mat.TransparentColor = new Vector3(0.3, 0.5, 0.2);
var mat = new LambertMaterial();
mat.setTransparentColor(new Vector3(0.3, 0.5, 0.2));

color of the transparent.

See Also