Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Color.a

public float a;

Description

Alpha component of the color (0 is transparent, 1 is opaque).

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color color = Color.white; void Example() { color.a = 0; } }

Did you find this page useful? Please give it a rating: