要添加到背景图像的额外空间。
如果你的图像有阴影,并且你想让背景图像扩展到此样式所用 GUI 元素指定的矩形之外,请使用此项。
using UnityEngine;
public class Example : MonoBehaviour { // Prints the left, right, top and down values of the GUIStyle overflow
RectOffset rctOff;
void OnGUI() { rctOff = GUI.skin.button.overflow; Debug.Log("Left: " + rctOff.left + " Right: " + rctOff.right); Debug.Log("Top: " + rctOff.top + " Bottom: " + rctOff.bottom); } }