暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RepaintInspector.cs 408B

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. }