Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ParentWindow.cs 359B

123456789101112131415
  1. using UnityEditor;
  2. namespace Unity.PlasticSCM.Editor
  3. {
  4. internal class ParentWindow
  5. {
  6. internal static EditorWindow Get()
  7. {
  8. if (EditorWindow.HasOpenInstances<PlasticWindow>())
  9. return EditorWindow.GetWindow<PlasticWindow>(false, null, false);
  10. return EditorWindow.focusedWindow;
  11. }
  12. }
  13. }