Hi guys, i need a little help here.
I’m creating a custom plugin that has an special Character Class inside, no problem there (runtime module). I have created also another module that is an editor module… the idea is that this EditorModule will have, appart from the typical blueprint editor, will have a new tab with a Custom Graph editor inside.
I have at the momment managed to registrate a DetailCustomization for my class like this
FPropertyEditorModule& PropertyModule = FModuleManager::LoadModuleChecked<FPropertyEditorModule>("PropertyEditor");
{
PropertyModule.RegisterCustomClassLayout(AMyPluginClass::StaticClass()->GetFName(), FOnGetDetailCustomizationInstance::CreateStatic(&FMyCustomization::MakeInstance));
}
But i have no idea if this is really the customization that i’m looking for… it does get triggered when entering the blueprint editor.
Can any of you show me the way on how i would create a custom node graph as a new tab for this new character class?
Greetings