GUIStyle.fixedHeight
Declaration
public float fixedHeight;Описание
Если не-0, то любые GUI элементы, отображаемые с этим стилем, будут иметь высоту, указанную здесь.
using UnityEngine;
public class Example : MonoBehaviour { // Prints the value of fixedHeight.
void OnGUI() { Debug.Log(GUI.skin.button.fixedHeight); } }