修复SaveAsImage被其他组件遮挡时无法正常保存的问题 (#337)

This commit is contained in:
monitor1394
2026-02-26 21:53:29 +08:00
parent 92abee1a6c
commit 3301d5fd36
7 changed files with 363 additions and 25 deletions

View File

@@ -18,7 +18,11 @@ namespace XCharts.Runtime
protected bool m_Refresh;
protected Action<VertexHelper, Painter> m_OnPopulateMesh;
public Action<VertexHelper, Painter> onPopulateMesh { set { m_OnPopulateMesh = value; } }
public Action<VertexHelper, Painter> onPopulateMesh
{
get { return m_OnPopulateMesh; }
set { m_OnPopulateMesh = value; }
}
public int index { get { return m_Index; } set { m_Index = value; } }
public Type type { get { return m_Type; } set { m_Type = value; } }
public void Refresh()