LambertMaterial.AmbientColor

LambertMaterial.AmbientColor property

Gets or sets the ambient color

public Vector3 AmbientColor { get; set; }

Property Value

The

var mat = new LambertMaterial();
mat.AmbientColor = new Vector3(1, 1, 1);
var mat = new LambertMaterial();
mat.setAmbientColor(new Vector3(1, 1, 1));

ambient.

See Also