23 [SerializeField]
private bool m_Show =
true;
24 [SerializeField]
private float[] m_Center =
new float[2] { 0.5f, 0.5f };
25 [SerializeField]
private float m_Radius = 100;
26 [SerializeField]
private Color m_BackgroundColor;
35 get {
return m_Show; }
36 set {
if (PropertyUtil.SetStruct(ref m_Show, value)) SetVerticesDirty(); }
46 get {
return m_Center; }
47 set {
if (value !=
null) { m_Center = value; SetAllDirty(); } }
55 get {
return m_Radius; }
56 set {
if (PropertyUtil.SetStruct(ref m_Radius, value)) SetAllDirty(); }
64 get {
return m_BackgroundColor; }
65 set {
if (PropertyUtil.SetColor(ref m_BackgroundColor, value)) SetVerticesDirty(); }
67 public int index {
get;
internal set; }
79 public static Polar defaultPolar
89 polar.center[1] = 0.45f;