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

スクリプト言語

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

GUIStyle.active

public var active: GUIStyleState;

Description

Rendering settings for when the control is pressed down.

	// Assigns a texture to button for when the control
	// is pressed down

	var aTexture : Texture2D;

	function OnGUI() {
	 	if(!aTexture) {
			Debug.LogError("Assign a texture on the editor first");
			return;
		}
		
		GUI.skin.button.active.background = aTexture;		
	}