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中ReorderableList怎么用?】 -> 正文阅读

[游戏开发]【第三问 Unity中ReorderableList怎么用?】

什么是ReorderableList???

ReorderableList=Re + orderable + List;意思就是可以对List继续重新排序;并且在进行排序的过程中可以进行很多自定义的操作。当然ReorderList也主要是作用于在Editor下面,主要用于在写工具上面,或者Inspector上面做一些自己的需求;

一、首先看一下演示效果

  • 添加随机颜色,并且可以看到自定义的标签:颜色数组和【可以自定义别名
    在这里插入图片描述
  • 删除元素需要确认
    在这里插入图片描述
    3.选择元素进行提示,可以实现对应操作
    在这里插入图片描述

二、怎么用

  • 根据自己的实际情况选择,比如上面的例子就是对TestReorderableList类中colors数组进行操作
  • 通过在Editor下实现OnInspectorGUI的重写
  • 通过对ReorderableList中需要注册的事件进行注册,然后回调处理自己的实际逻辑

三、代码

  • 组件代码TestReorderableList
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class TestReorderableList : MonoBehaviour
{
    public List<Color> colors = new List<Color>();
}
  • Editor下ReorderableList的功能代码:ReorderableListEditor
using UnityEditor;
using UnityEditorInternal;
using UnityEngine;


[CustomEditor(typeof(TestReorderableList))]
public class ReorderableListEditor : Editor
{
    private ReorderableList reorderableList;

    private void OnEnable()
    {
        reorderableList = new ReorderableList(serializedObject, serializedObject.FindProperty("colors"), true, true,
            true,
            true);
        //绘制元素回调
        reorderableList.drawElementCallback = DrawElementCallback;
        //绘制Header回调
        reorderableList.drawHeaderCallback = DrawHeaderCallback;
        //移除回调
        reorderableList.onRemoveCallback = OnRemoveCallback;
        //添加按钮回调
        reorderableList.onAddCallback = OnAddCallback;
        //选择元素回调
        reorderableList.onSelectCallback = OnSelectCallback;
        //元素拖拽
        reorderableList.onMouseDragCallback = OnMouseDragCallback;
    }

    public override void OnInspectorGUI()
    {
        EditorGUILayout.Space();
        serializedObject.Update();
        reorderableList.DoLayoutList();
        serializedObject.ApplyModifiedProperties();
    }


    /// <summary>
    /// 会在元素回调
    /// </summary>
    /// <param name="rect"></param>
    /// <param name="index"></param>
    /// <param name="selected"></param>
    /// <param name="focused"></param>
    void DrawElementCallback(Rect rect, int index, bool selected, bool focused)
    {
        SerializedProperty itemData = reorderableList.serializedProperty.GetArrayElementAtIndex(index);
        //元素之间的位置
        rect.y += 2;
        rect.height = EditorGUIUtility.singleLineHeight;
        EditorGUI.PropertyField(rect, itemData, GUIContent.none);
    }


    void DrawHeaderCallback(Rect rect)
    {
        GUI.Label(rect, "颜色数组");
        Rect subChildRect = new Rect(rect.x + 80, rect.y, 150, rect.height);
        GUI.Label(subChildRect, "【***可以自定义别名***】");
    }

    void OnRemoveCallback(ReorderableList reorderableList)
    {
        if (EditorUtility.DisplayDialog("Tips", "Remove The Element???", "ok", "cancel"))
        {
            ReorderableList.defaultBehaviours.DoRemoveButton(reorderableList);
        }
    }

    void OnAddCallback(ReorderableList reorderableList)
    {
        if (reorderableList.serializedProperty != null)
        {
            reorderableList.serializedProperty.arraySize++;
            reorderableList.index = reorderableList.serializedProperty.arraySize - 1;

            //获取指定索引的元素值为初始值,默认是最后一个
            SerializedProperty otherSp = reorderableList.serializedProperty.GetArrayElementAtIndex(0);


            //这里可以初始值的赋值
            SerializedProperty currentSp =
                reorderableList.serializedProperty.GetArrayElementAtIndex(reorderableList.index);
            //这里可以采用指定位置的元素值做为新的值
            // currentSp.colorValue = otherSp.colorValue;
            //随机一个元素值
            currentSp.colorValue = new Color(Random.Range(0, 1.0f), Random.Range(0, 1.0f), Random.Range(0, 1.0f));
        }
        else
        {
            ReorderableList.defaultBehaviours.DoAddButton(reorderableList);
        }
    }


    void OnSelectCallback(ReorderableList list)
    {
        EditorUtility.DisplayDialog("提示", "可以对选中的第" + (list.index + 1) + "个Item进行操作", "知道了");
    }

    void OnMouseDragCallback(ReorderableList list)
    {
        Debug.Log("元素拖拽");
    }
}

结语:-------------------货币无贵贱,BUG无大小–【valaki】

  游戏开发 最新文章
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
上一篇文章      下一篇文章      查看所有文章
加:2022-01-17 11:47:50  更:2022-01-17 11:48:45 
 
开发: 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/27 18:30:19-

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