GUIStyle.overflow 溢出

var overflow : RectOffset

Description描述

Extra space to be added to the background image.

添加到背景图片的额外空间。

This is used if your image has a drop shadow and you want to extend the background image beyond the rectangles specified for gui elements that use this style.

这是用来如果您的图片带有阴影并且你想要扩展背景图片超出用于GUI元素指定的矩形时,使用这个样式。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	private RectOffset rctOff;
	void OnGUI() {
		if (GUI.skin.customStyles.Length > 0) {
			rctOff = GUI.skin.customStyles[0].overflow;
			Debug.Log("Left: " + rctOff.left + " Right: " + rctOff.right);
			Debug.Log("Top: " + rctOff.top + " Bottom: " + rctOff.bottom);
		}
	}
}
// Prints the left, right, top and down values of the GUIStyle overflow
//打印这个GUIStyle的overflow的 left, right, top 和down值 

private var rctOff : RectOffset;
function OnGUI() {
	if(GUI.skin.customStyles.Length > 0) {
		rctOff = GUI.skin.customStyles[0].overflow;
		Debug.Log("Left: " + rctOff.left + " Right: " + rctOff.right);
		Debug.Log("Top: " + rctOff.top + " Bottom: " + rctOff.bottom);
	}
}
最后修改:2011年1月20日 Thursday 21:09

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。