0 以外の場合、このスタイルで表示される任意の GUI 要素はここで指定した高さを持ちます。
// Prints the value of fixedHeight.
function OnGUI() {
Debug.Log(GUI.skin.button.fixedHeight);
}
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnGUI() { Debug.Log(GUI.skin.button.fixedHeight); } }