I’d like to be able to have different camera tracks for VR vs 2D. And I have support for toggling VR on and off while putting on/taking off the headset at any time, so I would also like to be able to switch between these tracks at runtime and not just when the sequence first starts playing.
Is there a way to do that? I read about having alternate takes for the same sequences here:
I tried using the disable camera cuts node instead, which is supposed to be supported, but it has an issue. While camera cuts are disabled sequencer will set bGameCameraCutThisFrame = true every single frame, breaking TAA.
In this part at the end of UpdateCameraCut, which happens even though bJumpCut is set to false (not sure if that is the bug, or if that is intended for the final camera restore to original view target):
if (PC->PlayerCameraManager)
{
PC->PlayerCameraManager->bClientSimulatingViewTarget = (CameraActor != nullptr);
PC->PlayerCameraManager->bGameCameraCutThisFrame = true;
}
if (OnCameraCut.IsBound())
{
OnCameraCut.Broadcast(CameraComponent);
}