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

スクリプト言語

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

GUISkin.box

public var box: GUIStyle;

Description

GUI.Box で使用されるスタイル

	// Modifies only the box style of the current GUISkin

	var style : GUIStyle;

	function OnGUI() {
		GUI.skin.box = style;
		GUILayout.Box("This is a box.");
	}