position | 屏幕上用于标签字段的矩形。 |
label | 标签字段前的标签。 |
label2 | 显示在右侧的标签。 |
style | 用于显示标签的样式信息(颜色等)。 |
创建一个标签字段。(可用于显示只读信息。)
Shows a label in an editor window with the seconds since the editor started.
// Shows a label in the editor with the seconds since the editor started
class EditorGUILabelField extends EditorWindow {
@MenuItem("Examples/EditorGUI Label Usage")
static function Init() {
var window = GetWindow(EditorGUILabelField);
window.Show();
}
function OnGUI() {
EditorGUI.LabelField(Rect(3,3,position.width, 20),
"Time since start: ",
EditorApplication.timeSinceStartup.ToString());
this.Repaint();
}
}