Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


stretchHeight

Can GUI elements of this style be stretched vertically for better layout?
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.IMGUIModule
public bool stretchHeight { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void OnGUI() { GUI.skin.button.stretchHeight = true; }}