mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
3.6.0
This commit is contained in:
@@ -21,6 +21,7 @@ namespace XCharts.Runtime
|
||||
private Vector3 m_IconOffest;
|
||||
private Align m_Align = Align.Left;
|
||||
private Image m_IconImage;
|
||||
private bool m_Active = true;
|
||||
|
||||
public Image icon
|
||||
{
|
||||
@@ -188,9 +189,18 @@ namespace XCharts.Runtime
|
||||
return transform.localPosition;
|
||||
}
|
||||
|
||||
public override bool IsActive()
|
||||
{
|
||||
return m_Active;
|
||||
}
|
||||
|
||||
public void SetActive(bool flag)
|
||||
{
|
||||
ChartHelper.SetActive(gameObject, flag);
|
||||
if (m_Active != flag)
|
||||
{
|
||||
m_Active = flag;
|
||||
ChartHelper.SetActive(gameObject, flag);
|
||||
}
|
||||
}
|
||||
public void SetTextActive(bool flag)
|
||||
{
|
||||
|
||||
@@ -20,8 +20,8 @@ namespace XCharts.Runtime
|
||||
[ExecuteInEditMode]
|
||||
public static class XChartsMgr
|
||||
{
|
||||
public static readonly string version = "3.5.0";
|
||||
public static readonly int versionDate = 20221201;
|
||||
public static readonly string version = "3.6.0";
|
||||
public static readonly int versionDate = 20230201;
|
||||
public static string fullVersion { get { return version + "-" + versionDate; } }
|
||||
|
||||
internal static List<BaseChart> chartList = new List<BaseChart>();
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"name": "com.monitor1394.xcharts",
|
||||
"displayName": "XCharts",
|
||||
"version": "3.5.0",
|
||||
"date": "20221201",
|
||||
"checkdate": "20221101",
|
||||
"version": "3.6.0",
|
||||
"date": "20230201",
|
||||
"checkdate": "20230201",
|
||||
"desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!",
|
||||
"unity": "2018.3",
|
||||
"description": "A charting and data visualization library for Unity.",
|
||||
|
||||
Reference in New Issue
Block a user