Aimbot-ParallelEnv/Assets/XCharts/Editor/Series/RadarEditor.cs

19 lines
470 B
C#
Raw Normal View History

2022-10-25 19:07:39 +00:00
using XCharts.Runtime;
namespace XCharts.Editor
{
[SerieEditor(typeof(Radar))]
public class RadarEditor : SerieEditor<Radar>
{
public override void OnCustomInspectorGUI()
{
PropertyField("m_RadarType");
PropertyField("m_RadarIndex");
PropertyField("m_Symbol");
PropertyField("m_LineStyle");
PropertyField("m_ItemStyle");
PropertyField("m_Animation");
}
}
}