Version: 2019.1
public GUIStyleState focused ;

説明

要素にキーボードフォーカスがあるときのレンダリング設定

using UnityEngine;

public class Example : MonoBehaviour { void OnGUI() { GUI.skin.button.focused.textColor = Color.blue; } }