UnityEngine.Color.Color C# (CSharp) Method

Color() public method

public Color ( float r, float g, float b ) : System
r float
g float
b float
return System
		public Color(float r, float g, float b)
		{
			this.r = r;
			this.g = g;
			this.b = b;
			this.a = 1;
		}

Same methods

Color::Color ( float r, float g, float b, float a ) : System