You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
@ImGreenWolf thanks for reporting this issue. To avoid this issue, please update the following code in the ProjectAcousticsBakeUI plugin to match the following. Sorry for the inconvenience.
void AAcousticsDebugRenderer::Tick(float deltaSeconds)
{
auto viewport = GEditor->GetActiveViewport();
if (viewport == nullptr)
{
return;
}
auto* client = static_cast<FEditorViewportClient*>(viewport->GetClient());
if (client)
{
auto cameraDir = client->GetViewRotation().Vector();
auto cameraPosition = client->GetViewLocation();
auto cameraFOV = client->ViewFOV;
UpdateCacheAndRender(cameraPosition, cameraDir, cameraFOV);
}
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Whenever I try to calculate the probe settings, the editor crashes. This is the error I get
The text was updated successfully, but these errors were encountered: