サーチ…


構文

  • public static void GUILayout.Label(文字列テキスト、パラメータGUILayoutOption [] options)
  • public static bool GUILayout.Button(文字列テキスト、パラメータGUILayoutOption [] options)
  • public static string GUILayout.TextArea(文字列テキスト、params GUILayoutOption [] options)

GUILayout

古いUIシステムツール。ゲームでの素早く簡単なプロトタイプやデバッグに使用されます。

void OnGUI ()
{
    GUILayout.Label ("I'm a simple label text displayed in game.");

    if ( GUILayout.Button("CLICK ME") )
    {
        GUILayout.TextArea ("This is a \n
                             multiline comment.")
    }
}

GUILayout関数はOnGUI関数内で動作します。



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow