0 以外の場合、このスタイルで表示される任意の GUI 要素はここで指定した幅を持ちます。
// Prints the value of fixedWidth. function OnGUI() { Debug.Log(GUI.skin.button.fixedWidth); }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnGUI() { Debug.Log(GUI.skin.button.fixedWidth); } }