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

スクリプト言語

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

GUISkin.button

public var button: GUIStyle;

Description

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

	// Modifies only the button style of the current GUISkin

	var style : GUIStyle;

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