AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
XCharts.Arrow Class Reference

More...

Inheritance diagram for XCharts.Arrow:
Collaboration diagram for XCharts.Arrow:

Public Member Functions

Arrow Clone ()
 
void Copy (Arrow arrow)
 
Color32 GetColor (Color32 defaultColor)
 
- Public Member Functions inherited from XCharts.ChartComponent
virtual void SetVerticesDirty ()
 
virtual void ClearVerticesDirty ()
 
virtual void SetComponentDirty ()
 
virtual void ClearComponentDirty ()
 
virtual void ClearDirty ()
 
virtual void SetAllDirty ()
 

Properties

float width [get, set]
 The widht of arrow. 箭头宽。 More...
 
float height [get, set]
 The height of arrow. 箭头高。 More...
 
float offset [get, set]
 The offset of arrow. 箭头偏移。 More...
 
float dent [get, set]
 The dent of arrow. 箭头的凹度。 More...
 
Color32 color [get, set]
 the color of arrow. 箭头颜色。 More...
 
- Properties inherited from XCharts.ChartComponent
virtual bool vertsDirty [get]
 图表重绘标记。 More...
 
virtual bool componentDirty [get]
 组件重新初始化标记。 More...
 
bool anyDirty [get]
 需要重绘图表或重新初始化组件。 More...
 
Painter painter [get, set]
 
Action refreshComponent [get, set]
 
GameObject gameObject [get, set]
 

Additional Inherited Members

- Protected Attributes inherited from XCharts.ChartComponent
bool m_VertsDirty
 
bool m_ComponentDirty
 
Painter m_Painter
 

Detailed Description

Definition at line 16 of file Arrow.cs.

Property Documentation

◆ color

Color32 XCharts.Arrow.color
getset

the color of arrow. 箭头颜色。

Definition at line 66 of file Arrow.cs.

66  {
67  get { return m_Color; }
68  set { if (PropertyUtil.SetColor(ref m_Color, value)) SetVerticesDirty(); }
69  }

◆ dent

float XCharts.Arrow.dent
getset

The dent of arrow. 箭头的凹度。

Definition at line 56 of file Arrow.cs.

56  {
57  get { return m_Dent; }
58  set { if (PropertyUtil.SetStruct(ref m_Dent, value)) SetVerticesDirty(); }
59  }

◆ height

float XCharts.Arrow.height
getset

The height of arrow. 箭头高。

Definition at line 38 of file Arrow.cs.

38  {
39  get { return m_Height; }
40  set { if (PropertyUtil.SetStruct(ref m_Height, value)) SetVerticesDirty(); }
41  }

◆ offset

float XCharts.Arrow.offset
getset

The offset of arrow. 箭头偏移。

Definition at line 47 of file Arrow.cs.

47  {
48  get { return m_Offset; }
49  set { if (PropertyUtil.SetStruct(ref m_Offset, value)) SetVerticesDirty(); }
50  }

◆ width

float XCharts.Arrow.width
getset

The widht of arrow. 箭头宽。

Definition at line 29 of file Arrow.cs.

29  {
30  get { return m_Width; }
31  set { if (PropertyUtil.SetStruct(ref m_Width, value)) SetVerticesDirty(); }
32  }

The documentation for this class was generated from the following file: