|
||||||||||||||||
|
||||||||||||||||
Color.yellow
static var yellow : ColorDescriptionYellow. RGBA is weird (1, 235/255, 4/255, 1), but the color is nice to look at!
JavaScripts
// Assign a yellow color to this transform's material
transform.renderer.material.color = Color.yellow;
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 |
|
|||||||||||||||