Quantcast
Channel: Programming – Xinyustudio
Viewing all articles
Browse latest Browse all 284

Unity3D: using ReorderableList in Custom Editor

$
0
0

ReorderableList is not a widely used class in Unity3D, but good use of it can make your custom editor more professional.

ReorderableList[5]

This article walks through the typical use of ReorderableList.

  • Create a class, let’s call it Country:

image

  • Create a MonoBehaviour class, define a list of Countries in it

image

  • Now create a custom Editor

image

    • Declare a ReorderableList instance (1)
    • Associate this instance with the List<Country> SupportedLanguageList instance in previous MonoBehaviour class
    • Call the DoLayoutList() function in OnInspectorGUI() function

  • Now your UI should look like this:

ReorderableList

Now we can do several enhancement upon this default UI:

Add below code in OnEnable function of your custom Editor to fine tune the appearance:

image

Now your UI should look like this:

image

Now Let’s change the header of this control:

image

Now your UI should look like this:

image

And you have definite unlimited degree to customize this sortable, draggable list!

  • It should be note that in your model class (e.g. Country in this case), you must define the exposed field as public field, not a property! Otherwise, when calling

var name = element.FindPropertyRelative(“Name”);

you will get null!

  • It should also be note that you should include the namespace:

using UnityEditorInternal;


Filed under: Programming, Unity 3d Tagged: custom editor, drag drop, exmaple, list, ReorderableList, tutorial, Unity, Unity 3d

Viewing all articles
Browse latest Browse all 284

Trending Articles