Name | Description |
---|---|
label | Label to show in front of the control. |
Make a label in front of some control.
Simple window that shows the prefix label.
class SimplePrefixLabelUsage extends EditorWindow {
@MenuItem("Examples/PrefixLabel Usage")
static function Init() {
var window = GetWindow(SimplePrefixLabelUsage);
window.Show();
}
function OnGUI() {
var ammo : int = 0;
EditorGUILayout.BeginHorizontal();
EditorGUILayout.PrefixLabel("Ammo");
target = EditorGUILayout.IntField(ammo);
EditorGUILayout.EndHorizontal();
}
}