Close a group started with BeginHorizontal.
Horizontal Layout.
    function OnGUI () {
        GUILayout.BeginHorizontal ("box");
        GUILayout.Button ("I'm the first button");
        GUILayout.Button ("I'm to the right");
        // End the horizontal group we began above
        GUILayout.EndHorizontal ();
    }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnGUI() { GUILayout.BeginHorizontal("box"); GUILayout.Button("I'm the first button"); GUILayout.Button("I'm to the right"); GUILayout.EndHorizontal(); } }
Did you find this page useful? Please give it a rating: