C++ Enum types don't show up in Blackboard Keys

I’ve tried to access to a particular enum type, created in C++. It is accessible through blueprints but not from the BB.

My enum:

UENUM(BlueprintType)
enum class EClasses : uint8
{
Class1,
Class2,
Class3
};

I’ve tried Blueprintable as enum tag as well. Nothing changes.

Does anyone have any suggestion?

Interesting, I tested this and got your results, there’s a way luckily, not the best but a way nonetheless. Check this

1 Like

This indeed works! Thank you so much @KaidoomDev :metal:

1 Like