m_AdjustWithTimescale not added to the Camera Controller Inspector

Cheo

Active member
The m_AdjustWithTimescale cannot be seen out of the box in the inspector because it is missing from the Camera Controller Inspector script.
 
Good catch - add the following to line 76 of CameraControllerInspector:
Code:
            FieldInspectorView.AddField(target, "m_AdjustWithTimescale", foldout);
 
Top