如果使用此样式渲染某些内容,则计算其大小。
此函数不考虑换行。要执行此操作,您需要确定分配的宽度,然后调用 CalcHeight 来确定换行高度。
// Example for the GUIStyle.CalcSize
using UnityEngine;
public class CalcSizeExample : MonoBehaviour { string s;
void Start() { s = "A string for GUIContent()"; }
void OnGUI() { GUIContent content = new GUIContent(s);
GUIStyle style = GUI.skin.box; style.alignment = TextAnchor.MiddleCenter;
// Compute how large the button needs to be. Vector2 size = style.CalcSize(content);
// make the Box double sized GUI.Box(new Rect(10.0f, 10.0f, 2.0f * size.x, 2.0f * size.y), s); } }