Skip to content
Snippets Groups Projects
Commit 8c62fb42 authored by David Gilbert's avatar David Gilbert :bug:
Browse files

Merge branch...

Merge branch '138-vareceiveractor-does-not-call-super-endplay-if-the-va-plugin-was-not-started' into '5.3'

fix(VAReceiverActor): Fix Super::EndPlay not being called if the VA plugin was not started

See merge request !12
parents 1287d370 f33fafb5
Branches
No related tags found
1 merge request!12fix(VAReceiverActor): Fix Super::EndPlay not being called if the VA plugin was not started
...@@ -162,13 +162,11 @@ void AVAReceiverActor::EndPlay(const EEndPlayReason::Type EndPlayReason) ...@@ -162,13 +162,11 @@ void AVAReceiverActor::EndPlay(const EEndPlayReason::Type EndPlayReason)
{ {
RunOnAllNodesEvent.Detach(); RunOnAllNodesEvent.Detach();
if(!FVAPlugin::GetWasStarted()) if(FVAPlugin::GetWasStarted())
{ {
return;
}
DirManager->ResetManager(); DirManager->ResetManager();
HRIRManager->ResetManager(); HRIRManager->ResetManager();
}
Super::EndPlay(EndPlayReason); Super::EndPlay(EndPlayReason);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment