3.0 - unitypackage

This commit is contained in:
monitor1394
2022-01-05 21:40:48 +08:00
parent c160867765
commit 228a4b2840
846 changed files with 105 additions and 467693 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
using UnityEngine;
namespace XCharts
{
public class VisualMapContext : MainComponentContext
{
/// <summary>
/// 鼠标悬停选中的index
/// </summary>
public int pointerIndex { get; set; }
public double pointerValue { get; set; }
public bool minDrag { get; internal set; }
public bool maxDrag { get; internal set; }
internal List<Color32> inRangeColors = new List<Color32>();
}
}