Insert a flexible space element.
Flexible spaces use up any leftover space in a layout.
Note: This will override the GUILayout.ExpandWidth and GUILayout.ExpandHeight
Flexible Space in a GUILayout Area.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public float sliderValue = 1.0F; void OnGUI() { GUILayout.BeginArea(new Rect(0, 0, 200, 60)); GUILayout.BeginHorizontal(); GUILayout.RepeatButton("A button with\ntwo lines"); GUILayout.FlexibleSpace(); GUILayout.BeginVertical(); GUILayout.Box("Value:" + Mathf.Round(sliderValue)); sliderValue = GUILayout.HorizontalSlider(sliderValue, 0.0F, 10); GUILayout.EndVertical(); GUILayout.EndHorizontal(); GUILayout.EndArea(); } }