Alex Stevens Profile picture
Apr 7, 2021 16 tweets 7 min read Read on X
Did you know @UnrealEngine 4.26 brought in the ability to extend editor menus and toolbars using Blueprints?

#UETips #UnrealEngine
1. Create an editor utility BP using the EditorUtilityToolMenuEntry class. This BP will allow us to specify where our button is created, its labels, and its behaviour. There's a little more functionality, but we'll focus on toolbar buttons for now. ImageImage
2. Set the name and label of your button, and if making a toolbar extension, set the entry type to "Tool Bar Button" Image
3. Now we need to specify the Menu and Section for the tool menus system to know where to add our button. There's an easy way via the experimental Edit Menu editor!

Firstly, add the following to Config/DefaultEditorPerProjectUserSettings.ini (feel free to create this file) Image
4. After restarting the editor, you should be able to enable the "Enable Menu Editing" checkbox under the Window menu. This will now show an "Edit Menu" button for menus and toolbars: ImageImage
5. Click the "Edit Menu" in the level editor toolbar. This shows menus, sections, and buttons along with their corresponding names. In our BP, set our menu to "LevelEditor.LevelEditorToolBar" and section to "Game". This will tell the system to add the button there. ImageImage
6. Now we can implement our Execute method that will fire off when the button is pressed. In our example, we're just spawning an editor utility widget.

As you can see below, there's also other methods to specify visibility, labels, tooltips, etc. at runtime. ImageImage
7. Now we need to register our button. We could do this via an editor utility action, however, most of us want the button at added at startup. So... let's add a "Run" custom event to our blueprint, and then add ourself to the tool menu like so: Image
8. Next, copy a reference to our BP, and add it as a startup object to DefaultEditorPerProjectUserSettings.ini like the picture below:

To clean up the reference, remove the first apostrophe (') and everything before, and the period (.) and everything after. ImageImage
9. This will create an instance of the specified class on startup and then execute any event called "Run". This is why we're passing in "self" in the "AddMenuEntryObject" method above.

This is super useful, as you can create singletons out of your editor utility blueprints!
10. Icon names can be obtained by hovering over one in the Texture Atlases tool and using the "Used by" names.

To open the texture atlases tool open the widget reflector: Window->Developer Tools->Widget Reflector

Then: Atlases->Display Texture Atlases Image
11. Most of these are defined in "EditorStyle" and copy the appropriate icon names from the texture atlas view above. Image
12. Restart the engine and voilà, you now have a make game button! Image
You can also create submenus, sections, dynamic menus/sections, and a couple of other things... so play around! ImageImage
Also, kudos to @jack_knobel, he brought this little gold nugget to my attention!
Scratch that, submenus are off the menu! (apologies folks). Check your logs for any types that aren't supported currently.

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Alex Stevens

Alex Stevens Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @MilkyEngineer

Mar 9, 2021
Struggling to keep track of name/string values in @UnrealEngine for your game logic? Need a lightweight way to standardise those tags? Check out Gameplay Tags!

#UETips
Any added tag can be viewed from the Gameplay Tags window in Project Settings. Any tag that you add will be stored centrally, promoting reuse and will prevent you (or your team) from any pesky spelling mistakes. You can even store them in separate .ini files!
If later, you decide "Nah, that was a terrible name!", you can just rename the tag, and let the system redirect any assets using the old tag to the new one!
Read 9 tweets
Apr 28, 2020
Don't know what #UE4's Asset Registry is? Wondering how to query asset data _without_ the cost of loading that asset?! Well, look no further, time for a #UETips tweetorial!
The Asset Registry caches metadata about assets under the hood of UE, and can be used to query this metadata without loading assets.
The editor uses it for gathering references, data validation, the content browser's advanced search syntax (linked), etc.
docs.unrealengine.com/en-US/Engine/C…
However, the Asset Registry can be used at runtime! When your game is cooked, asset registry data is serialised with your packages; when a package is mounted, the asset registry will load that data.

In fact, Robo Recall uses the asset registry to query packaged mods! Image
Read 17 tweets
Oct 24, 2019
Ever wondered how to define your own Data Validation rules with Editor Utility Blueprints? Here's an example to validate that material asset names are prefixed with "M_".

@UnrealEngine #UE4 #GameDev #Tutorial
1. Enable the Data Validation plugin and restart the editor.
2. Add bAllowBlueprintValidators=true to DefaultEditor.ini

(And optionally enable validate on save and cook by setting to true)
Read 9 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(