Data Asset with Dynamic Combo Box (4-27)

I’ve got a Data Asset class with various attributes. But I want to add a drop down menu (combo box) to it that lets the user select from a few options, but these options cannot be a static enum but decided upon at run time. Is there a way to do this?

For FName or FString types You can just use GetOptions meta specifier

Or You can write custom IPropertyTypeCustomization derived class with SComboButton and display any options You need.

thanks for that! I think GetOptions will do the trick