Files
XCharts/Editor/Series/HeatmapEditor.cs

17 lines
371 B
C#
Raw Normal View History

2021-11-23 13:20:07 +08:00
2021-12-24 13:33:09 +08:00
namespace XCharts.Editor
2021-11-23 13:20:07 +08:00
{
[SerieEditor(typeof(Heatmap))]
public class HeatmapEditor : SerieEditor<Heatmap>
{
public override void OnCustomInspectorGUI()
{
PropertyField("m_Ignore");
PropertyField("m_IgnoreValue");
PropertyField("m_ItemStyle");
PropertyField("m_Animation");
}
}
}