Scene outliner
[WIP]
We don't need to recreate an element to customize it, we can just customize SceneOutliner for example, using .Pin() function to get the current instance of element.
Explanation:
cpp
void FCustomizeWorldOutlinerModule::StartupModule()
{
FCustomizeWorldOutlinerStyle::Initialize();
FCustomizeWorldOutlinerStyle::ReloadTextures();
// This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module
FLevelEditorModule& LevelEditorModuleInstance = FModuleManager::Get().LoadModuleChecked<FLevelEditorModule>("LevelEditor");
LevelEditorModuleInstance.OnLevelEditorCreated().AddRaw(this, &FCustomizeWorldOutlinerModule::OnLevelEditorCreated);
}
void FCustomizeWorldOutlinerModule::OnLevelEditorCreated(TSharedPtr<ILevelEditor> InLevelEditor)
{
FLevelEditorModule& LevelEditorModuleInstance = FModuleManager::Get().LoadModuleChecked<FLevelEditorModule>("LevelEditor");
// Register brush
FSceneOutlinerModule& SceneOutlinerModule = FModuleManager::Get().LoadModuleChecked<FSceneOutlinerModule>("SceneOutliner");
// 1. custom column
FSceneOutlinerColumnInfo ColumnInfo;
ColumnInfo.Visibility = ESceneOutlinerColumnVisibility::Visible;
ColumnInfo.PriorityIndex = 11;
ColumnInfo.ColumnLabel = FText::FromString("TestColumns");
ColumnInfo.Factory.BindLambda([&](ISceneOutliner& Outliner)
{
return TSharedRef< ISceneOutlinerColumn >(MakeShareable(new FCustomOutlinerColumns(Outliner)));
});
// 2. Get Instance to Scene Outliner and customize her row
auto SceneOutliner = LevelEditorModuleInstance.GetLevelEditorInstance().Pin().Get()->GetSceneOutliner();
SceneOutliner.Get()->AddColumn(FCustomOutlinerColumns::GetID(), ColumnInfo);
}