ColorConstructor

Cambiar al Manual
public Color (float r, float g, float b, float a);

Parámetros

rComponente Rojo.
gComponente Verde.
bComponente Azul.
aComponente Alpha.

Descripción

Contruye un Color nuevo con los componentes r,g,b,a dados.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color newColor = new Color(0.3f, 0.4f, 0.6f, 0.3f); } }

public Color (float r, float g, float b);

Parámetros

rComponente Rojo.
gComponente Verde.
bComponente Azul.

Descripción

Construye un Color nuevo con los componentes r,g,b dados y establece a a 1.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color newColor = new Color(0.3f, 0.4f, 0.6f); } }