Version: 2019.3
public static Color color ;

説明

GUI のグローバルなカラー

これは背景とテキスト両方に影響します。

See Also: backgroundColor, contentColor.


Yellow Color on the GUI Controls.

// Tints all GUI drawn elements with yellow.

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { GUI.color = Color.yellow; GUI.Label(new Rect(10, 10, 100, 20), "Hello World!"); GUI.Box(new Rect(10, 50, 50, 50), "A BOX"); GUI.Button(new Rect(10, 110, 70, 30), "A button"); } }