Exemplo n.º 1
0
 // Token: 0x06000226 RID: 550 RVA: 0x0000EC08 File Offset: 0x0000CE08
 public GUIToolbarSearchField(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     this.Style         = EditorStyles.toolbarTextField;
     this.LayoutOptions = new GUILayoutOption[]
     {
         GUILayout.MinWidth(50f),
         GUILayout.MaxWidth(250f)
     };
 }
Exemplo n.º 2
0
 // Token: 0x06000212 RID: 530 RVA: 0x0000E758 File Offset: 0x0000C958
 public GUIToolbarButton(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     if (GUIToolbarButton._Style == null)
     {
         GUIToolbarButton._Style               = new GUIStyle(EditorStyles.toolbarButton);
         GUIToolbarButton._Style.name          = "EditorFramework-GUIToolbarButton-0b4b0fde-2fb4-4165-a3f3-c6bd5b07796a";
         GUIToolbarButton._Style.alignment     = TextAnchor.MiddleLeft;
         GUIToolbarButton._Style.imagePosition = 0;
     }
     this.Style = GUIToolbarButton._Style;
 }
Exemplo n.º 3
0
 // Token: 0x06000231 RID: 561 RVA: 0x0000EF64 File Offset: 0x0000D164
 public GUIToolbarSlider(GUIToolbar toolbar, float minvalue, float maxvalue) : base(toolbar.Editor, toolbar)
 {
     this.Style         = GUI.skin.horizontalSlider;
     this.LayoutOptions = new GUILayoutOption[]
     {
         GUILayout.MinWidth(64f),
         GUILayout.MaxWidth(64f)
     };
     this.MinValue = minvalue;
     this.MaxValue = maxvalue;
     this.Value    = minvalue;
     this._value   = minvalue;
 }
Exemplo n.º 4
0
 // Token: 0x06000214 RID: 532 RVA: 0x0000E81A File Offset: 0x0000CA1A
 public GUIToolbarToggle(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     this.Style = EditorStyles.toolbarButton;
 }
Exemplo n.º 5
0
 // Token: 0x06000229 RID: 553 RVA: 0x0000EECD File Offset: 0x0000D0CD
 public GUIToolbarTextField(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     this.Style = EditorStyles.toolbarTextField;
 }
Exemplo n.º 6
0
 // Token: 0x06000207 RID: 519 RVA: 0x0000E595 File Offset: 0x0000C795
 public GUIToolbarRadioGroup(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
 }
Exemplo n.º 7
0
 // Token: 0x0600021C RID: 540 RVA: 0x0000E9A4 File Offset: 0x0000CBA4
 public GUIToolbarFlexibleSpace(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     this.Style = EditorStyles.toolbar;
 }
Exemplo n.º 8
0
 // Token: 0x06000216 RID: 534 RVA: 0x0000E894 File Offset: 0x0000CA94
 public GUIToolbarLabel(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     this.Style           = new GUIStyle(GUI.skin.label);
     this.Style.alignment = TextAnchor.MiddleLeft;
 }
Exemplo n.º 9
0
 // Token: 0x06000223 RID: 547 RVA: 0x0000EA54 File Offset: 0x0000CC54
 public GUIToolbarPopup(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     this.Style = EditorStyles.toolbarPopup;
 }
Exemplo n.º 10
0
 // Token: 0x0600023B RID: 571 RVA: 0x0000F0D6 File Offset: 0x0000D2D6
 public GUIToolbarMenu(GUIToolbar toolbar) : base(toolbar.Editor, toolbar)
 {
     this.Style = EditorStyles.toolbarDropDown;
 }