Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Color   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Enumerations
  • History
  • Index
  • Color
  • All Members
  • Variables
  • a
  • b
  • g
  • grayscale
  • r
  • this [int index]
  • Constructors
  • Color
  • Functions
  • ToString
  • Class Variables
  • black
  • blue
  • clear
  • cyan
  • gray
  • green
  • grey
  • magenta
  • red
  • white
  • yellow
  • Class Functions
  • Lerp
  • operator *
  • operator +
  • operator -
  • operator /
  • operator Color
  • operator Vector4

Color.operator Vector4  

static implicit function Vector4 (c : Color) : Vector4

Description

Colors can be implicitly converted to and from Vector4.

JavaScripts
// Convert a white color to a vector4
var aVector4 : Vector4 = Color.white;

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