GUILayout.SelectionGrid()

作者:追风剑情 发布于:2019-6-14 11:44 分类:Unity3d

示例

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEditor;
  5.  
  6. public class UITableWindow : EditorWindow
  7. {
  8. [MenuItem("Example/UI Table Window")]
  9. static void Init()
  10. {
  11. EditorWindow window = EditorWindow.CreateInstance<UITableWindow>();
  12. window.Show();
  13. }
  14.  
  15. int selected = 0;
  16.  
  17. void OnGUI()
  18. {
  19. GUIContent[] content = new GUIContent[10];
  20. //提取内置资源
  21. Texture toggle_off = EditorGUIUtility.Load("toggle act") as Texture;
  22. Texture toggle_on = EditorGUIUtility.Load("toggle on act") as Texture;
  23. for (int i = 0; i <= 9; i++)
  24. {
  25. string text = i.ToString();
  26. Texture image = (selected == i) ? toggle_on : toggle_off;
  27. string tooltip = "tooltip " + i;
  28. GUIContent c = new GUIContent(text, image, tooltip);
  29. content[i] = c;
  30. }
  31. selected = GUILayout.SelectionGrid(selected, content, 3);
  32. }
  33. }

测试

2222.gif

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号