Slate - where can I find list of all available Editor Styles ?

There are bunch of build in styles for use with various Widgets.

But… Wonder what are their names, it’s rather hard to use them if you don’t know what styles are there in first place.

1 Like

Engine\Source\Editor\EditorStyle\Private\SlateEditorStyle.cpp

3 Likes

This is indeed the location of the editor styles specifically, however beware that this will not be available to your game when built without the editor. Our core styles are stored in Engine\Source\Runtime\SlateCore\Private\Styling\CoreStyle.cpp, and is what should really be expanded upon if you are intending to use the styles in game.

Shouldn’t be a problem, since I want to use it only for editor modules (;.

Thanks for it!