Version: 2021.1
言語: 日本語
public static void BeginGroup (Rect position);
public static void BeginGroup (Rect position, string text);
public static void BeginGroup (Rect position, Texture image);
public static void BeginGroup (Rect position, GUIContent content);
public static void BeginGroup (Rect position, GUIStyle style);
public static void BeginGroup (Rect position, string text, GUIStyle style);
public static void BeginGroup (Rect position, Texture image, GUIStyle style);
public static void BeginGroup (Rect position, GUIContent content, GUIStyle style);

パラメーター

position グループで使用するスクリーン上の Rect
text グループで表示するテキスト
image グループで表示するTexture
content グループのテキスト、画像、ツールチップ。指定した場合は、マウスクリックはグループによって "キャプチャ" され、指定しない場合は背景は描画されず、マウスクリックもキャプチャされません。
style 背景に使用するスタイル

説明

グループを開始します。これは最後に EndGroup を呼び出す必要があります

When you begin a group, the coordinate system for GUI controls are set so (0,0) is the top-left corner of the group. All controls are clipped to the group. Groups can be nested - if they are, children are clipped to their parents.

This is very useful when moving a bunch of GUI elements around on screen. A common use case is designing your menus to fit on a specific screen size, then centering the GUI on larger displays. See Also: matrix, BeginScrollView.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { // Constrain all drawing to be within a 800x600 pixel area centered on the screen. GUI.BeginGroup(new Rect(Screen.width / 2 - 400, Screen.height / 2 - 300, 800, 600));

// Draw a box in the new coordinate space defined by the BeginGroup. // Notice how (0,0) has now been moved on-screen GUI.Box(new Rect(0, 0, 800, 600), "This box is now centered! - here you would put your main menu");

// We need to match all BeginGroup calls with an EndGroup GUI.EndGroup(); } }