dekav
(Deka)
1
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
3 Likes
dekav
(Deka)
3
This indeed works! Thank you so much @KaidoomDev
1 Like