IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> 【Unity】 HTFramework框架(四十一)在编辑器内绘制美观且实用的表格窗口(TableView) -> 正文阅读

[游戏开发]【Unity】 HTFramework框架(四十一)在编辑器内绘制美观且实用的表格窗口(TableView)

更新日期:2021年10月16日。
Github源码:[点我获取源码]
Gitee源码:[点我获取源码]

TableView表格视图

使用TableView可以很方便的绘制表格视图,当然,实际上它就是使用了TreeView进行绘制而已,所以关于TreeView的一些信息我便不再讲解了,如有什么不明白的地方可以参考官方脚本手册。

使用

定义表格行

TableView的使用非常简单,首先,表格的数据对应了一个List集合,其中每一行对应集合中的每一个元素,所以,我们先自定义一个表格数据集合:

	public class Student
    {
        public string name;
        public Sex sex;
        public int age;
        public string grade;
        public string address;
        public GameObject entity;
        public Color col;
        public Texture headImage;
    }

    public enum Sex
    {
        Man,
        Woman
    }

	List<Student> _students = new List<Student>();

定义表格列

然后,我们需要定义表格列对象TableColumn的集合,他告诉了TableView我们的表格需要绘制多少列,每列如何绘制数据等,如下,定义一个列,用于绘制数据类Studentname字段:

		new TableColumn<Student>()
        {
        	//如何绘制列头
            headerContent = new GUIContent("姓名"),
            //列的初始宽度
            width = 100,
            //是否支持排序
            canSort = true,
            //支持排序时的排序方法
            Compare = (a, b) =>
            {
                return a.name.CompareTo(b.name);
            },
            //列的绘制方法,比如这一列是绘制Student的name字段
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.name = EditorGUI.TextField(cellRect, data.name);
            },
        }

如此,便定义了表格中某一列的规则,我们依葫芦画瓢的加入Student的其他字段的列绘制规则:

		List<TableColumn<Student>> _tableColumns = new List<TableColumn<Student>>();
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("姓名"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.name.CompareTo(b.name);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.name = EditorGUI.TextField(cellRect, data.name);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("性别"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.sex.CompareTo(b.sex);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.sex = (Sex)EditorGUI.EnumPopup(cellRect, data.sex);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("年龄"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.age.CompareTo(b.age);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.age = EditorGUI.IntField(cellRect, data.age);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("班级"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.grade.CompareTo(b.grade);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.grade = EditorGUI.TextField(cellRect, data.grade);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("家庭住址"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.address.CompareTo(b.address);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.address = EditorGUI.TextField(cellRect, data.address);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("实体"),
            width = 100,
            canSort = false,
            autoResize = false,
            Compare = null,
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.entity = (GameObject)EditorGUI.ObjectField(cellRect, data.entity, typeof(GameObject), true);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("颜色"),
            width = 100,
            canSort = false,
            autoResize = false,
            Compare = null,
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.col = EditorGUI.ColorField(cellRect, data.col);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("头像"),
            width = 100,
            canSort = false,
            autoResize = false,
            Compare = null,
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.headImage = (Texture)EditorGUI.ObjectField(cellRect, data.headImage, typeof(Texture), true);
            },
        });

表格视图

然后通过上面的表格行表格列便可以生成一个表格视图

TableView<Student> _tableView = new TableView<Student>(_students, _tableColumns);

此时,我们调用他的OnGUI方法便可以直接绘制出表格:

_tableView.OnGUI(new Rect(0, 0, width, height));

如下图,由于_students的默认数据长度为0,所以现在一条数据也没有:
在这里插入图片描述
我们点击右键,可以添加数据,或删除已选数据

在这里插入图片描述
表格视图的基本使用就这么简单,如下是demo源码:

public class TestWindow : HTFEditorWindow
{
    [MenuItem("Test/Table Window")]
    private static void OpenWindow()
    {
        GetWindow<TestWindow>();
    }

    private List<Student> _students;
    private List<TableColumn<Student>> _tableColumns;
    private TableView<Student> _tableView;

    protected override void OnEnable()
    {
        base.OnEnable();

        _students = new List<Student>();

        _tableColumns = new List<TableColumn<Student>>();
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("姓名"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.name.CompareTo(b.name);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.name = EditorGUI.TextField(cellRect, data.name);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("性别"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.sex.CompareTo(b.sex);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.sex = (Sex)EditorGUI.EnumPopup(cellRect, data.sex);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("年龄"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.age.CompareTo(b.age);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.age = EditorGUI.IntField(cellRect, data.age);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("班级"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.grade.CompareTo(b.grade);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.grade = EditorGUI.TextField(cellRect, data.grade);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("家庭住址"),
            width = 100,
            canSort = true,
            autoResize = false,
            Compare = (a, b) =>
            {
                return a.address.CompareTo(b.address);
            },
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.address = EditorGUI.TextField(cellRect, data.address);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("实体"),
            width = 100,
            canSort = false,
            autoResize = false,
            Compare = null,
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.entity = (GameObject)EditorGUI.ObjectField(cellRect, data.entity, typeof(GameObject), true);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("颜色"),
            width = 100,
            canSort = false,
            autoResize = false,
            Compare = null,
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.col = EditorGUI.ColorField(cellRect, data.col);
            },
        });
        _tableColumns.Add(new TableColumn<Student>()
        {
            headerContent = new GUIContent("头像"),
            width = 100,
            canSort = false,
            autoResize = false,
            Compare = null,
            DrawCell = (cellRect, data, rowIndex, isSelected, isFocused) =>
            {
                data.headImage = (Texture)EditorGUI.ObjectField(cellRect, data.headImage, typeof(Texture), true);
            },
        });

        _tableView = new TableView<Student>(_students, _tableColumns);
    }
    protected override void OnBodyGUI()
    {
        base.OnBodyGUI();

        _tableView.OnGUI(new Rect(0, 0, position.width, position.height));
    }

    public class Student
    {
        public string name;
        public Sex sex;
        public int age;
        public string grade;
        public string address;
        public GameObject entity;
        public Color col;
        public Texture headImage;
    }

    public enum Sex
    {
        Man,
        Woman
    }
}

通用表格检视器

针对挂到物体上的组件,可以对其的自定义类型的数组、集合字段使用通用表格检视器,他将会自动将其的可序列化字段展开到一个表格视图中,可以很便捷的进行预览和编辑数据:

检视器面板数据:
在这里插入图片描述
展开至通用表格窗口:
在这里插入图片描述

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2021-10-18 17:42:37  更:2021-10-18 17:43:19 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/28 0:39:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码