Version: 2020.1
언어: 한국어
public void Show ();
public void Show (bool immediateDisplay);

파라미터

immediateDisplay Immediately display Show.

설명

Show the EditorWindow window.

EditorWindow.Show displays any window that has been created. In the script example below the window is created with no addition functionality. Many of the script examples in EditorWindow are more complex.

// Create an empty editor window and show it

using UnityEditor; using UnityEngine; using System.Collections;

public class Example : EditorWindow { [MenuItem("Example/Window position usage")] static void InitWindow() { Example window = (Example)GetWindow(typeof(Example)); window.Show(); } }