using unreal 5.3.2 on. mac - so far everything seemed fine. lecture 106 - the door does not open. i csnt find the error. is there a way i could get help?
this section in prticular in the triggercomponent cpp does not fire
the Ulogs work but the door doesnt open. i can open the door by pressing the button in the detais pan but not with the gargoyle/key
AActor* Actor = GetAcceptableActor();
if (Actor != nullptr)
{
UE_LOG(LogTemp, Display, TEXT("Unlocked"));
Mover->SetShouldMove(true);
}
else
{
UE_LOG(LogTemp, Display, TEXT("Locked"));
Mover->SetShouldMove(false);
}