UnityEditorInternal.ReorderableList

作者:追风剑情 发布于:2019-3-25 18:45 分类:Unity3d

可手动拖动更改列表排序

示例

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEditor;
  5. using UnityEditorInternal;
  6.  
  7. public class TestEditorWindow : EditorWindow
  8. {
  9. private static TestEditorWindow instance;
  10.  
  11. private ReorderableList reorderableList;
  12.  
  13. [MenuItem("Window/Test Window")]
  14. public static void ShowWindow()
  15. {
  16. instance = GetWindow<TestEditorWindow>(false, "Test Window", true);
  17. instance.InitializeLists();
  18. }
  19.  
  20. private void InitializeLists()
  21. {
  22. List<string> list = new List<string>();
  23. list.Add("test item a");
  24. list.Add("test item b");
  25. list.Add("test item c");
  26. list.Add("test item d");
  27.  
  28. reorderableList = new ReorderableList(list, list.GetType());
  29. reorderableList.onAddCallback += OnAddCallback;
  30. reorderableList.onRemoveCallback += OnRemoveCallback;
  31. reorderableList.onSelectCallback += OnSelectCallback;
  32. reorderableList.drawHeaderCallback += DrawHeaderCallback;
  33. }
  34.  
  35. private void OnAddCallback(ReorderableList list)
  36. {
  37. list.list.Add("new string");
  38. }
  39.  
  40. private void OnRemoveCallback(ReorderableList list)
  41. {
  42. if (list.index == -1)
  43. return;
  44. //默认情况移除当前项后会自动选中下一项
  45. list.list.RemoveAt(list.index);
  46. list.index = -1;//不选中任何一项
  47. }
  48.  
  49. private void OnSelectCallback(ReorderableList list)
  50. {
  51. Debug.Log("select index=" + list.index);
  52. }
  53.  
  54. private void DrawHeaderCallback(Rect rect)
  55. {
  56. EditorGUI.LabelField(rect, "Header");
  57. }
  58.  
  59. private void OnGUI()
  60. {
  61. if (reorderableList == null)
  62. return;
  63. //根据rect在指定位置显示列表
  64. reorderableList.DoList(new Rect(10, 20, 100, 500));
  65. //在默认位置显示列表
  66. //reorderableList.DoLayoutList();
  67. }
  68. }

运行测试

11111.png

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号