static var yellow : Color
Description
Yellow. RGBA is weird (1, 235/255, 4/255, 1), but the color is nice to look at!
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
transform.renderer.material.color =
Color.yellow;
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
def
Awake():
transform.renderer.material.color =
Color.yellow