Version: 2022.2
public float fixedHeight ;

描述

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

using UnityEngine;

public class Example : MonoBehaviour { // Prints the value of fixedHeight.

void OnGUI() { Debug.Log(GUI.skin.button.fixedHeight); } }