Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


fixedHeight

If non-0, any GUI elements rendered with this style will have the height specified here.
Read time 1 minuteLast updated 7 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.IMGUIModule
public float fixedHeight { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ // Prints the value of fixedHeight. void OnGUI() { Debug.Log(GUI.skin.button.fixedHeight); }}