Attempting to bind a custom event to a server-only delegate property currently fails to validate after compiling a Blueprint.
#pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "MyActor.generated.h" DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FActorSpawnedEvent, AActor*, Spawner); UCLASS() class AMyActor : public AActor { GENERATED_BODY() public: // Sets default values for this actor's properties AMyActor(); protected: // Called when the game starts or when spawned virtual void BeginPlay() override; public: // Called every frame virtual void Tick(float DeltaTime) override; UPROPERTY(BlueprintAssignable, BlueprintAuthorityOnly) FActorSpawnedEvent OnActorSpawned; };
What is the cause of the packaging error falling back to 'GameUserSettings' in ue5?
How does TextureRenderTarget2D get TArray<uint8> type data?
Why does the REMOVE method of map container remove elements have memory leaks?
How to delete some elements correctly when deleting an array loop?
UMG RichText not appear image when packaged
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-75153 in the post.
4 |
Component | UE - Gameplay - Blueprint Editor |
---|---|
Affects Versions | 4.21, 4.22, 4.23 |
Target Fix | 4.25 |
Created | May 24, 2019 |
---|---|
Resolved | Jan 8, 2020 |
Updated | Feb 11, 2020 |