AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
ItemStyleDrawer.cs
1 /************************************************/
2 /* */
3 /* Copyright (c) 2018 - 2021 monitor1394 */
4 /* https://github.com/monitor1394 */
5 /* */
6 /************************************************/
7 
8 using UnityEditor;
9 using UnityEngine;
10 
11 namespace XCharts
12 {
13  [CustomPropertyDrawer(typeof(ItemStyle), true)]
15  {
16  public override string ClassName { get { return "ItemStyle"; } }
17  public override void OnGUI(Rect pos, SerializedProperty prop, GUIContent label)
18  {
19  base.OnGUI(pos, prop, label);
20  if (MakeFoldout(prop, "m_Show"))
21  {
22  ++EditorGUI.indentLevel;
23  PropertyField(prop, "m_Color");
24  PropertyField(prop, "m_Color0");
25  PropertyField(prop, "m_ToColor");
26  PropertyField(prop, "m_ToColor2");
27  PropertyField(prop, "m_BackgroundColor");
28  PropertyField(prop, "m_BackgroundWidth");
29  PropertyField(prop, "m_CenterColor");
30  PropertyField(prop, "m_CenterGap");
31  PropertyField(prop, "m_BorderType");
32  PropertyField(prop, "m_BorderWidth");
33  PropertyField(prop, "m_BorderColor");
34  PropertyField(prop, "m_BorderColor0");
35  PropertyField(prop, "m_BorderToColor");
36  PropertyField(prop, "m_Opacity");
37  PropertyField(prop, "m_TooltipFormatter");
38  PropertyField(prop, "m_NumericFormatter");
39  PropertyListField(prop, "m_CornerRadius", true);
40  --EditorGUI.indentLevel;
41  }
42  }
43  }
44 }
XCharts.BasePropertyDrawer
Definition: BasePropertyDrawer.cs:15
XCharts.ItemStyleDrawer
Definition: ItemStyleDrawer.cs:14
XCharts
Definition: RewardChart.cs:14
XCharts.SerieSymbolType.Rect
@ Rect
正方形。可通过设置itemStyle的cornerRadius变成圆角矩形。