Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

GUILayout.BeginVertical

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public static function BeginVertical(params options: GUILayoutOption[]): void;
public static void BeginVertical(params GUILayoutOption[] options);
public static function BeginVertical(style: GUIStyle, params options: GUILayoutOption[]): void;
public static void BeginVertical(GUIStyle style, params GUILayoutOption[] options);
public static function BeginVertical(text: string, style: GUIStyle, params options: GUILayoutOption[]): void;
public static void BeginVertical(string text, GUIStyle style, params GUILayoutOption[] options);
public static function BeginVertical(image: Texture, style: GUIStyle, params options: GUILayoutOption[]): void;
public static void BeginVertical(Texture image, GUIStyle style, params GUILayoutOption[] options);
public static function BeginVertical(content: GUIContent, style: GUIStyle, params options: GUILayoutOption[]): void;
public static void BeginVertical(GUIContent content, GUIStyle style, params GUILayoutOption[] options);

パラメーター

text グループ上に表示するテキスト
image グループ上に表示する Texture
content グループのためのテキスト、画像、ツールチップ
style 使用する背景画像とパディングの値。省略された場合は、背景は透明になります。
options 特別なレイアウトプロパティーのオプションリスト。ここに渡された値で style で定義された設定を上書きします。
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

説明

水平のコントロールグループを開始します

この要素内部にレンダリングされるすべてのコントロールは縦隣同士の垂直に配置されていきます。このグループは必ず EndVertical で終了させなければいけません。


垂直レイアウト

	function OnGUI () {	
		// Starts a vertical group
		GUILayout.BeginVertical ("box");

GUILayout.Button ("I'm the top button"); GUILayout.Button ("I'm the bottom button"); GUILayout.EndVertical(); }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { GUILayout.BeginVertical("box"); GUILayout.Button("I'm the top button"); GUILayout.Button("I'm the bottom button"); GUILayout.EndVertical(); } }