Finding BP references to C++ enum's

Sorry to resuscitate the thread but no solution was provided.
Best way I found to make them available

class UMyBlueprintLibrary: public UBlueprintFunctionLibrary
{

UFUNCTION(BlueprintPure)
static UEnum* GetMyCPPEnum() {
    static UEnum* MyEnum = StaticEnum<MyCPPEnum>();
    return MyEnum ;
}

};
1 Like