I encounter weird behavior in UE5.2 when using a mix of C++ and BP. This behavior makes BP unusable for me. Am I doing something wrong? How is this possible?
Steps to reproduce:
(0. Clear Binaries/Intermediate etc if you want)
- Create AIController C++ class with this constructor:
AMyAIController::AMyAIController(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
PerceptionComponent = CreateDefaultSubobject<UAIPerceptionComponent>(TEXT("PerceptionComponent"));
SetPerceptionComponent(*PerceptionComponent);
SightConfig = CreateDefaultSubobject<UAISenseConfig_Sight>(TEXT("SightConfig"));
SightConfig->SightRadius = 5.0f;
SightConfig->LoseSightRadius = 1200.0f;
SightConfig->PeripheralVisionAngleDegrees = FieldOfViewAngle;
SightConfig->SetMaxAge(0.0f);
SightConfig->AutoSuccessRangeFromLastSeenLocation = -1.0f;
SightConfig->DetectionByAffiliation.bDetectEnemies = true;
SightConfig->DetectionByAffiliation.bDetectFriendlies = true;
SightConfig->DetectionByAffiliation.bDetectNeutrals = true;
HearingConfig = CreateDefaultSubobject<UAISenseConfig_Hearing>(TEXT("HearingConfig"));
HearingConfig->HearingRange = 10000.0f;
HearingConfig->DetectionByAffiliation.bDetectEnemies = true;
HearingConfig->DetectionByAffiliation.bDetectFriendlies = true;
HearingConfig->DetectionByAffiliation.bDetectNeutrals = true;
HearingConfig->SetMaxAge(0.0f);
GetPerceptionComponent()->ConfigureSense(*SightConfig);
//GetPerceptionComponent()->ConfigureSense(*HearingConfig);
}
-
Create BP for this class, save it and close editor
-
In C++ rename the perception component (from TEXT(“PerceptionComponent”) to TEXT(“AbcPerceptionComponent”))
-
Build, open editor and try to open Details panel for this perception component in BP. In my case the details panel is empty.
-
Go back to C++ and rename the perception component back to TEXT(“PerceptionComponent”)
-
Build, open editor and open Details panel for the perception component. In my case the details panel is not empty anymore.
(Worse:)
-
Uncomment the line //GetPerceptionComponent()->ConfigureSense(*HearingConfig);
-
Build, open editor and check the Details panel. Do you find the hearing sense in the configs array? In my case it does not exist.
-
Create a new BP for the same C++ class. Check the Details panel. The hearing config is included.
This behavior will force me to recreate the BP each time I change the component configuration.