示例#1
0
    static void CreateWindow()
    {
        // Get existing open window or if none, make a new one:
        PythonInterpreterWindow window = (PythonInterpreterWindow)EditorWindow.GetWindow(typeof(PythonInterpreterWindow));

        window.titleContent = new GUIContent("Python");

        window.InitializeWindow();
    }
 public PythonCommandListenerThread(int port, PythonInterpreterWindow targetWindow)
 {
     m_port = port;
     m_targetWindow = targetWindow;
 }
示例#3
0
 public PythonCommandListenerThread(int port, PythonInterpreterWindow targetWindow)
 {
     m_port         = port;
     m_targetWindow = targetWindow;
 }