How to access Data Asset C++ class using Asset Manager in BP

To cast to a class in blueprints, it needs to be marked as BlueprintType. I had to change the UCLASS macro declaration to this:

UCLASS(BlueprintType)
class FPSGAME_API UMissionPlan : public UDataAsset
1 Like