The code at UIAnchor.cs line 109...
...
if (panelContainer.clipping == UIDrawCall.Clipping.None)
{
// Panel has no clipping -- just use the screen's dimensions
float ratio = (mRoot != null) ? (float)mRoot.manualHeight / Screen.height * 0.5f : 0.5f;
rect.xMin = -Screen.width * ratio;
rect.yMin = -Screen.height * ratio;
rect.xMax = -rect.xMin;
rect.yMax = -rect.yMin;
}...
When calculate the 'ratio', it's need to check 'UIRoot.Automatic'? or not?
I try to check automatic, then the UIAnchor positioned right like i want.
//float ratio = (mRoot != null) ? (float)mRoot.manualHeight / Screen.height * 0.5f : 0.5f;
float ratio = (mRoot != null && !mRoot.automatic) ? (float)mRoot.manualHeight / Screen.height * 0.5f : 0.5f;
and...sorry for my English.
