Version: 2019.2
public float fixedHeight ;

Description

Если не 0, все GUI элементы, отображенные с этим стилем, будут иметь высоту, указанную здесь.

using UnityEngine;

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

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