Make a blueprint of TestActor below and submit it to source control. Then edit a property in it and then attempt to diff.
#pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "Components/ActorComponent.h" #include "TestCircularDependency.generated.h" USTRUCT() struct FTestStruct { GENERATED_BODY() FTestStruct(){} FTestStruct(const class UTestComponent* InOwner) : Owner(InOwner){}; UPROPERTY(Transient) const class UTestComponent* Owner = nullptr; }; UCLASS(Blueprintable) class UTestComponent : public UActorComponent { GENERATED_BODY() UPROPERTY(Transient) FTestStruct Member = { this }; }; UCLASS(Blueprintable) class HOOD_API ATestActor : public AActor { GENERATED_BODY() ATestActor() { static const FName TestCompName = TEXT("TestComponent"); TestComp = CreateOptionalDefaultSubobject<UTestComponent>(TestCompName); } UPROPERTY(EditDefaultsOnly) class UTestComponent* TestComp = nullptr; };
How does TextureRenderTarget2D get TArray<uint8> type data?
Why does the REMOVE method of map container remove elements have memory leaks?
What is the cause of the packaging error falling back to 'GameUserSettings' in ue5?
UMG RichText not appear image when packaged
How to delete some elements correctly when deleting an array loop?
How do I set a material as a post-processing material?
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-82615 in the post.
0 |
Component | UE - Gameplay - Blueprint Editor |
---|---|
Affects Versions | 4.23 |
Target Fix | 4.24 |
Fix Commit | 9888086 |
---|---|
Main Commit | 9888142 |
Release Commit | 9888086 |
Created | Oct 28, 2019 |
---|---|
Resolved | Oct 30, 2019 |
Updated | Jan 25, 2021 |