Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SimplifiedLineEditor.cs 530B

12345678910111213141516171819
  1. using XCharts.Runtime;
  2. namespace XCharts.Editor
  3. {
  4. [SerieEditor(typeof(SimplifiedLine))]
  5. public class LineHPEditor : SerieEditor<SimplifiedLine>
  6. {
  7. public override void OnCustomInspectorGUI()
  8. {
  9. PropertyField("m_XAxisIndex");
  10. PropertyField("m_YAxisIndex");
  11. PropertyField("m_LineType");
  12. //PropertyField("m_Clip");
  13. PropertyField("m_LineStyle");
  14. PropertyField("m_ItemStyle");
  15. PropertyField("m_Animation");
  16. }
  17. }
  18. }