Is it possible to cast to a Data Asset Class in Blueprints?

if your data asset is in c++ then try exposing it as Blueprintable and as BlueprintType

UCLASS(Blueprintable, BlueprintType)
class YOUR_API UPlantDataAsset : public UBaseDataAsset

1 Like