Color.operator Vector4static implicit function Vector4 (c : Color) : Vector4DescriptionColors can be implicitly converted to and from Vector4.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { public Vector4 aVector4 = Color.white; } import UnityEngine
import System.Collections class example(MonoBehaviour): public aVector4 as Vector4 = Color.white |
