I need to get Category name from UPROPERTY() for custom Widget.
How do I do that ? I tried to look trough UProperty() and IPropertyHandle, but can’t find anything.
I need to get Category name from UPROPERTY() for custom Widget.
How do I do that ? I tried to look trough UProperty() and IPropertyHandle, but can’t find anything.
UField* classFld = …;
if (classFld->HasMetaData(TEXT(“Category”)))
const FString& fieldCat = classFld->GetMetaData(TEXT(“Category”));