Version: 2017.2
public float fixedHeight ;

描述

如果不为 0,则使用该样式呈现的任何 GUI 元素都将具有此处指定的高度。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { Debug.Log(GUI.skin.button.fixedHeight); } }