GUIStyle
- active
- alignment
- border
- CalcHeight
- CalcMinMaxWidth
- CalcScreenSize
- CalcSize
- clipping
- contentOffset
- DrawCursor
- DrawWithTextSelection
- Draw
- fixedHeight
- fixedWidth
- focused
- fontSize
- fontStyle
- font
- GetCursorPixelPosition
- GetCursorStringIndex
- GUIStyle
- hover
- imagePosition
- lineHeight
- margin
- name
- none
- normal
- onActive
- onFocused
- onHover
- onNormal
- operator GUIStyle
- overflow
- padding
- stretchHeight
- stretchWidth
- wordWrap
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