20 [SerializeField]
private bool m_AlignWithLabel;
21 [SerializeField]
private bool m_Inside;
22 [SerializeField]
private bool m_ShowStartTick;
23 [SerializeField]
private bool m_ShowEndTick;
31 get {
return m_AlignWithLabel; }
32 set {
if (PropertyUtil.SetStruct(ref m_AlignWithLabel, value)) SetVerticesDirty(); }
40 get {
return m_Inside; }
41 set {
if (PropertyUtil.SetStruct(ref m_Inside, value)) SetVerticesDirty(); }
49 get {
return m_ShowStartTick; }
50 set {
if (PropertyUtil.SetStruct(ref m_ShowStartTick, value)) SetVerticesDirty(); }
58 get {
return m_ShowEndTick; }
59 set {
if (PropertyUtil.SetStruct(ref m_ShowEndTick, value)) SetVerticesDirty(); }
69 m_AlignWithLabel =
false,
71 m_ShowStartTick =
false,
78 public AxisTick Clone()
80 var axisTick =
new AxisTick();
90 public void Copy(AxisTick axisTick)