ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

编辑器SearchField+ReorderableList使用

2021-12-17 23:31:07  阅读:185  来源: 互联网

标签:null SearchField 编辑器 allListItems searchText new ReorderableList choicesList rec




 1 private SearchField _searchField;
 2 private string _searchText;
 3 private ReorderableList _choicesList;
 4 private List<string> _allListItems;
 5 
 6 public override void OnInspectorGUI()
 7 {
 8     if (null == _searchField) 
 9         _searchField = new SearchField();
10     var newText = _searchField.OnToolbarGUI(_searchText, new UnityEngine.GUILayoutOption[0]);
11     if (newText != _searchText)
12     {
13         _searchText = newText;
14         if (null != _allListItems)
15             _allListItems.Clear();
16         if (!string.IsNullOrEmpty(_searchText))
17         {
18             if (null == _allListItems) _allListItems = new List<string>();
19             for (var i = 0; i < 10; ++i)
20                 _allListItems.Add("" + i);
21             CreateListView();
22         }
23     }
24     if (null != _allListItems && _allListItems.Count > 0 && _choicesList != null) 
25         _choicesList.DoLayoutList();
26 }
27 
28 void CreateListView()
29 {
30     if (null != _choicesList) return;
31     
32     _choicesList = new ReorderableList(_allListItems, typeof(string), false, false, false, false);
33     _choicesList.drawElementCallback = (rect, index, active, focused) =>
34     {
35         rect.y += 2;
36         var half = rect.width / 2;
37         EditorGUI.LabelField(new UnityEngine.Rect(rect.x, rect.y, half, EditorGUIUtility.singleLineHeight), "index:" + index);
38         EditorGUI.LabelField(new UnityEngine.Rect(rect.x + half, rect.y, half, EditorGUIUtility.singleLineHeight), _allListItems[index]);
39     };
40 
41     _choicesList.onSelectCallback = (list) =>
42     {
43         _choicesList = null;
44         _searchText = null;
45     };
46 }

效果:

 

 

标签:null,SearchField,编辑器,allListItems,searchText,new,ReorderableList,choicesList,rec
来源: https://www.cnblogs.com/sailJs/p/15702982.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有