mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-22 08:50:10 +00:00
3.0 - unitypackage
This commit is contained in:
26
Editor/Series/EffectScatterEditor.cs
Normal file
26
Editor/Series/EffectScatterEditor.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
|
||||
namespace XCharts.Editor
|
||||
{
|
||||
[SerieEditor(typeof(EffectScatter))]
|
||||
public class EffectScatterEditor : SerieEditor<EffectScatter>
|
||||
{
|
||||
public override void OnCustomInspectorGUI()
|
||||
{
|
||||
if (serie.IsUseCoord<SingleAxisCoord>())
|
||||
{
|
||||
PropertyField("m_SingleAxisIndex");
|
||||
}
|
||||
else
|
||||
{
|
||||
PropertyField("m_XAxisIndex");
|
||||
PropertyField("m_YAxisIndex");
|
||||
}
|
||||
PropertyField("m_Clip");
|
||||
PropertyField("m_Symbol");
|
||||
|
||||
PropertyField("m_ItemStyle");
|
||||
PropertyField("m_Animation");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user