REGRESSION: ReferenceUp no longer works with transpose

8685570--1171224--upload_2022-12-24_18-16-2.png 8685570--1171227--upload_2022-12-24_18-16-10.png
Yeah the up vector of the camera is reverse of the target’s
could be a bug so i logged it for reference

    public override void PrePipelineMutateCameraStateCallback(CinemachineVirtualCameraBase vcam, ref CameraState curState, float deltaTime)
    {
        if (m_Up)
            curState.ReferenceUp = m_Up.up;
    }

there could be conflict in some of the gazillion settings

my guess: frame transposer ignores ReferenceUp

IN-26926 in version 2.8.9

could be you introduced a regression with 2.8.9 because with 2.8.6 it works 100%
8685612--1171239--upload_2022-12-24_18-38-52.png
now how am I supposed to load an old version, now that UPM hides version history? ok let’s hack the json for now
8685612--1171245--upload_2022-12-24_18-46-18.png
and … now it works
so yeah, you guys have a regression on your hands.

You are right, there is a regression. It’s in CinemachinePOV.
We’ll push out a fix ASAP.
Thanks for reporting

thanks.