Если не 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); } }