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

1234567891011121314151617
  1. using UnityEditor;
  2. using UnityEngine;
  3. namespace Unity.PlasticSCM.Editor.AssetUtils
  4. {
  5. internal static class RepaintInspector
  6. {
  7. internal static void All()
  8. {
  9. UnityEditor.Editor[] editors =
  10. Resources.FindObjectsOfTypeAll<UnityEditor.Editor>();
  11. foreach (UnityEditor.Editor editor in editors)
  12. editor.Repaint();
  13. }
  14. }
  15. }