Skip to content

Instantly share code, notes, and snippets.

@YuukiTsuchida
Last active July 7, 2021 17:23
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YuukiTsuchida/84a8f3ebdecf830c277c to your computer and use it in GitHub Desktop.
Save YuukiTsuchida/84a8f3ebdecf830c277c to your computer and use it in GitHub Desktop.
ReorderableList
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
using UnityEditorInternal;
#endif
public class ReorderableListAttribute : PropertyAttribute {}
#if UNITY_EDITOR
[CustomPropertyDrawer( typeof( ReorderableListAttribute ) )]
public class ReorderableListDrawer : PropertyDrawer
{
private ReorderableList list_;
public void OnEnable()
{
}
public override void OnGUI( Rect rect, SerializedProperty serializedProperty, GUIContent label )
{
SerializedProperty listProperty = serializedProperty.FindPropertyRelative( "list_" );
ReorderableList list = GetList( listProperty );
float height = 0f;
for(var i = 0; i < listProperty.arraySize; i++)
{
height = Mathf.Max(height, EditorGUI.GetPropertyHeight(listProperty.GetArrayElementAtIndex(i)));
}
list.elementHeight = height;
list.DoList( rect );
}
public override float GetPropertyHeight( SerializedProperty serializedProperty, GUIContent label )
{
SerializedProperty listProperty = serializedProperty.FindPropertyRelative( "list_" );
return GetList( listProperty ).GetHeight();
}
private ReorderableList GetList( SerializedProperty serializedProperty )
{
if( list_ == null )
{
list_ = new ReorderableList( serializedProperty.serializedObject, serializedProperty );
}
return list_;
}
}
#endif
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
[Serializable]
public class ReorderableList<type>
{
public List<type> list_;
}
[Serializable]
public class IntReorderableList : ReorderableList<int>
{
}
public class ReorderableListTest : MonoBehaviour
{
[ReorderableList]public IntReorderableList data_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment