言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

GUILayout.EndVertical

public static function EndVertical(): void;

Description

BeginVerticalで開始したグループを閉じます


垂直レイアウト

	function OnGUI () {	
		GUILayout.BeginVertical ("box");

		GUILayout.Button ("I'm the top button");
		GUILayout.Button ("I'm the bottom button");
		
		// End the vertical group we started above
		GUILayout.EndVertical();
	}