stretchWidth
Can GUI elements of this style be stretched horizontally for better layouting?
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public bool stretchWidth { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void OnGUI() { GUI.skin.button.stretchWidth = true; }}