This commit is contained in:
monitor1394
2022-03-26 17:11:12 +08:00
parent 09f7557e1f
commit edd6d940b6
12 changed files with 142 additions and 48 deletions

View File

@@ -20,8 +20,8 @@ namespace XCharts.Runtime
[ExecuteInEditMode]
public static class XChartsMgr
{
public static readonly string version = "3.0.0";
public static readonly int versionDate = 20220101;
public static readonly string version = "3.0.0-preview5";
public static readonly int versionDate = 20220326;
public static string fullVersion { get { return version + "-" + versionDate; } }
internal static List<BaseChart> chartList = new List<BaseChart>();

View File

@@ -12,8 +12,8 @@ namespace XCharts.Runtime
private SVGPath m_Path;
public string svgPath { get { return m_SVGPath; } }
public bool mirrorY { get { return m_MirrorY; } }
public string svgPath { set { m_SVGPath = value; } get { return m_SVGPath; } }
public bool mirrorY { set { m_MirrorY = value; } get { return m_MirrorY; } }
protected override void Awake()
{