Reactor.RMaterial.SetDiffuseColor C# (CSharp) Method

SetDiffuseColor() public method

public SetDiffuseColor ( float r, float g, float b, float a ) : void
r float
g float
b float
a float
return void
        public void SetDiffuseColor(float r, float g, float b, float a)
        {
            diffColor = new Color(new Vector4(r, g, b, a));
        }