Version: 5.6
public bool stretchHeight ;

설명

Can GUI elements of this style be stretched vertically for better layout?

using UnityEngine;
using System.Collections;

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