Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 NGUI v3.5.4r2 版本。我正在尝试访问 UIScrollView 中的剪切矩形位置。我可以获得剪切矩形的高度和宽度,但无法访问 UIScrollView 的剪切矩形的位置。
您的帮助将不胜感激。感谢您。
您可以使用 UIRect(UIPanel 继承的)的 localCorners 变量来获取任何角的 Vector3 点。
UIPanel mPanel; Vector3 bottom_Left = mPanel.localCorners[0]; Vector3 top_Left = mPanel.localCorners[1]; Vector3 top_Right = mPanel.localCorners[2]; Vector3 bottom_Right = mPanel.localCorners[3];