Files

15 lines
469 B
Markdown
Raw Permalink Normal View History

2026-01-08 16:50:20 +00:00
# Known Issues
## Accumulation Buffer Projection Matrix
If accumulation's "Anti-aliasing" option is enabled and the scene contains a Cinemachine camera cut, the camera's FOV will be incorrect after the cut.
**Workaround**: Reset the projection matrix every frame, after CinemachineBrain has modified the camera.
public class FixProjection : MonoBehaviour
{
void LateUpdate()
{
Camera.main.ResetProjectionMatrix();
}
}