伪3d散点图

This commit is contained in:
2026-08-21 14:07:38 +08:00
parent 20df543ac2
commit 48ef51d169
3 changed files with 4 additions and 2 deletions
@@ -1,5 +1,6 @@
using UnityEngine;
using XericLibrary.Runtime.UIGraph;
using PrimitiveType = XericLibrary.Runtime.UIGraph.PrimitiveType;
namespace XericUI.XChart.Pseudo3D
{
@@ -1,5 +1,6 @@
using UnityEngine;
using XericLibrary.Runtime.UIGraph;
using UIPrimitiveType = XericLibrary.Runtime.UIGraph.PrimitiveType;
namespace XericUI.XChart.Pseudo3D
{
@@ -17,7 +18,7 @@ namespace XericUI.XChart.Pseudo3D
// ── 全局形状参数 ──────────────────────────────────────────
/// <summary>图元类型(多边形 / 矩形)</summary>
public PrimitiveType pointType = PrimitiveType.Polygon;
public UIPrimitiveType pointType = UIPrimitiveType.Polygon;
/// <summary>尺寸模式</summary>
public SizeMode sizeMode = SizeMode.InscribedCircle;
+1 -1
View File
@@ -36,7 +36,7 @@ namespace XericUI.XChart
Initialize();
}
private void OnEnable()
protected virtual void OnEnable()
{
if (!m_IsInitialized) Initialize();
}