Hey,
I am building a C++ plugin and have a UClass with the properties I want,
-
how can I use the Slate Widgets to have these show up and be editable in the editor when I press my plugin button (It’s a standalone type that opens a DockTab),
-
is a customization required ? Unfortunately I have not found a working tutorial on this yet.
I have an IDetailCustomization inherited class and I understand that it is supposed to just customize the layout of a uclass, but -
How do you make that UClass show up in a DockTab ?
I have the following classes for clarity :
FPlanetEngine (Plugin Module)
FPlanetEngineStyle
FPlanetEngineCommands
UPlanetEngineData
FPlanetEngineDetails
- I want to make the details come up and be editable in a DockTab like so :
Thank you,