mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-18 06:20:15 +00:00
22 lines
572 B
C#
22 lines
572 B
C#
|
|
|
|
namespace XCharts.Editor
|
|
{
|
|
[SerieEditor(typeof(Liquid))]
|
|
public class LiquidEditor : SerieEditor<Liquid>
|
|
{
|
|
public override void OnCustomInspectorGUI()
|
|
{
|
|
PropertyField("m_VesselIndex");
|
|
PropertyField("m_Min");
|
|
PropertyField("m_Max");
|
|
PropertyField("m_WaveLength");
|
|
PropertyField("m_WaveHeight");
|
|
PropertyField("m_WaveSpeed");
|
|
PropertyField("m_WaveOffset");
|
|
|
|
PropertyField("m_ItemStyle");
|
|
PropertyField("m_Animation");
|
|
}
|
|
}
|
|
} |