Limit dropdown selection to a specific Array

Hello! In the Editor I have an array of state classes, like this:

TArray<TSubclassOf<UFC_Base_State>>
{1A5829A3-488C-4EE3-A01E-9212D18EC201}

I would like the User to be able to select/change the initial state in another field, like this:
TSubclassOf<UFC_Base_State>
image

But when I click on the selection dropdown it lists every single state there exists:
image

How would I make it so, that in the Initial State dropdown, it should show only the States that are found in the Array only?

So in this case the dropdown should show only 3 options:
FC_Base_GroundedWalking
FC_Base_GroundedRunning
FC_Base_GroundedSprinting

1 Like