Details panel combobox filtering

Is there a way to filter out entries for a combobox in the details panel?

For example I declare TArray in my class, when I add an entry to my array and then pick the actor from the combobox in my details panel I will get the full list of actors in the level. Is there an easy way of discarding certain entries based on a name criteria?

Hi Steve,

The simplest way to filter down your results would be to change your array to an array of some subclass of AActor, and ensure the objects you want to appear are objects of that subclass. If that isn’t going to work for you, you may need to look at implementing a detail panel customization with your own logic for setting the variable. If you want to share a bit more about your use case, I’ll see if I can help get you started down that path.

Best,

Cody