EditorExtension.cs 450 B

12345678910111213141516171819202122232425
  1. 
  2. namespace YooAsset.Editor
  3. {
  4. #if UNITY_2019
  5. public static partial class UnityEngine_UIElements_ListView_Extension
  6. {
  7. public static void ClearSelection(this UnityEngine.UIElements.ListView o)
  8. {
  9. o.selectedIndex = -1;
  10. }
  11. }
  12. #endif
  13. #if UNITY_2019 || UNITY_2020
  14. public static partial class UnityEngine_UIElements_ListView_Extension
  15. {
  16. public static void Rebuild(this UnityEngine.UIElements.ListView o)
  17. {
  18. o.Refresh();
  19. }
  20. }
  21. #endif
  22. }