var a : float
Description
Alpha component of the color.
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
public Color color =
Color.white;
void Awake() {
color.a = 0;
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
public color as Color =
Color.white def
Awake():
color.a = 0