Sponsored By

Editor script for the scrolled list component

This time I'm going to show you handy editor script that allows us to extend the UI context menu by our newly created component. The script is tiny, but I also wanted to point out the sole possibility of extending the editor.

Emilia Tyl, Blogger

October 24, 2016

3 Min Read

This blog post was originally posted at http://emi.gd/blog/scrolled-list-menu-item/.

 

As part of my miniseries about scrolled lists I wanted to write a post about a handy editor script that allows us to extend the UI context menu by our newly created component. The script is tiny and trivial, but I also wanted to point out the sole possibility of extending the editor to those of you, that didn’t come across this topic earlier.

 

The editor script

So, we’ve written a nice component – Scrolled List. We also created the associated prefab. Now, every time, when we want to add this list to our view, we have to look up this prefab in the project files. Ok, we have the search field, but it’s still one more step on the road the the perfect game.

When we click on a game object on our scene, we have a context menu with a UI option. This contains Unity’s GUI components, such as slider/image/button/etc. It would be nice having there our scrolled list too, wouldn’t it?

I guess most of you already are aware of the fact that you can extend the Editor’s functionality by writing custom editor’s scripts. It can be a new option in the menu (not only this context menu, but also the main menu at the top), some fancy panel in the Inspector or some custom indicators and lines drawn on the Scene View. You can find plenty of tutorials on this matter in the Internet, along with a nice course on Pluralsight. Today I just wanted to show you my little script for the list, so the only thing you have to know is that all of the scripts that modify editor’s functionality have to be located in the “Editor” folder (you have to create one).

1

In this newly created directory I created the MenuExtensions script. It holds a class with the same name that has only two private static methods for now. The menu item marked methods have to be static, so the other has to be static too. The first method is called Instantiate. It instantiates given game object as a child of currently selected object. It also breaks the prefab instance.

Now the only thing left to do is to create a menu item click handler:

In the MenuItem attribute we provide the path at which our new option should appear. “GameObject” indicates that we choose the context menu shown after clicking the game object.

And voila - now we can add a new scrolled list component with only one click:

2

This is pretty straightforward – in my humble opinion it is worth to write such tiny editor for further convenience. If you would like to discover other viable options of extending the menus, you can start by reading for example this tutorial.

Read more about:

Blogs

About the Author(s)

Daily news, dev blogs, and stories from Game Developer straight to your inbox

You May Also Like