I’m writing a BlueprintFunctionLibrary as a Plugin and try to expose the delegate of FViewport::FOnViewportResized to bind some custom Blueprint events.
on compile I get
error : Unable to find 'class', 'delegate', 'enum', or 'struct' with name 'FViewport::FOnViewportResized'
I read that this error occurs when the Unreal Reflection system can not find it due to not being declared with UFUCNTION() Or UOBJECT().
i would create a new dynamic delegate (not multicast) for my param. and use that.
then bind in a different way. either bind your functionbp, and let your function bp receive the event, then call the delegate (maybe youll need a list for this).
or somehow connect the delegate to the viewport delegate (maybe with a lambda if it allows you).
But I already fail at the definitions The Unreal reflection system seem to fail to recognize the existence of the FViewport Class defined in UnrealClient.h. Sorry, I’m still a c++ novice.
#pragma once
#include "UnrealClient.h" // for ViewportResize event bind
#include "ExposedFunctionsBPLibrary.generated.h"
UCLASS()
class UExposedFunctionsBPLibrary : public UBlueprintFunctionLibrary
{
DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(FOnViewportResized, FViewport*,
Viewport, uint32, ViewportSize);
UPROPERTY()
FOnViewportResized OnViewportResize;
}
error : Unable to find 'class', 'delegate', 'enum', or 'struct' with name 'FViewport'
skip the viewport then. only declare one param, the size.
though i think you might be importing something wrong.
though, also, i wouldn’t expect that struct to be blueprintable.