2021-11-23 13:20:07 +08:00
|
|
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace XCharts
|
|
|
|
|
{
|
|
|
|
|
public class GridCoordContext : MainComponentContext, IRectContext
|
|
|
|
|
{
|
|
|
|
|
public float x { get; internal set; }
|
|
|
|
|
public float y { get; internal set; }
|
|
|
|
|
public float width { get; internal set; }
|
|
|
|
|
public float height { get; internal set; }
|
|
|
|
|
public Vector3 position { get; internal set; }
|
|
|
|
|
public float left { get; internal set; }
|
|
|
|
|
public float right { get; internal set; }
|
|
|
|
|
public float bottom { get; internal set; }
|
|
|
|
|
public float top { get; internal set; }
|
2021-12-19 20:53:55 +08:00
|
|
|
public bool isPointerEnter { get; set; }
|
2021-11-23 13:20:07 +08:00
|
|
|
}
|
|
|
|
|
}
|