Color.yellow Manual     Reference     Scripting  
Scripting > Runtime Classes > Color
Color.yellow
このドキュメントは有志により翻訳されたもので、オフィシャルではありません。オリジナルのページはこちら
This document is unofficially translated by users.Please see the original document here.

翻訳に関する修正など、ご連絡はこちらまで。
Please send e-mail to here, when you have any question about the translation.

編集 (GitHub)

static var yellow : Color

Description

Yellow. 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 {
public void Awake() {
transform.renderer.material.color = Color.yellow;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

public def Awake():
transform.renderer.material.color = Color.yellow