将点从 GUI 坐标系转换为屏幕空间。
注意:在 Unity 中,屏幕空间的 y 坐标从窗口顶部边缘的零值变化到窗口底部边缘的最大值。这与您可能期望的有所不同。
其他资源:GUIUtility.ScreenToGUIPoint。
using UnityEngine;
public class Example : MonoBehaviour { // Converts a GUICoordinate (affected by a group) to a Screen coordinate.
void OnGUI() { Vector2 gPos = new Vector2(10, 10); GUI.BeginGroup(new Rect(10, 10, 100, 100)); Vector2 convertedGUIPos = GUIUtility.GUIToScreenPoint(gPos); GUI.EndGroup(); Debug.Log("GUI: " + gPos + " Screen: " + convertedGUIPos); } }