Known Issues(3.6.9)


An archive of past version defects.

If there is a recurrence, please report it to the Bug Report Forum.

Arbor 3.6.9

Graphs cannot be captured properly when taking screenshots when scaling display resolution

When scaling the display resolution or displaying in HiDPI mode on Apple Retina Display, the screenshot of the graph is enlarged and the entire graph does not fit.

  • Status: Fixed in Arbor 3.6.10.

Temporary solution

  • Open Assets/Plugins/Arbor/Internal/Editor/EditorCapture.cs.
  • Changed around line 339 as follows.
    float scaling = 1f / EditorGUIUtility.pixelsPerPoint;
    GUI.matrix = Matrix4x4.TRS(-captureRect.min * scaling, Quaternion.identity, Vector3.one * scaling);