Files
XCharts/Runtime/Component/Vessel/VesselHandler.cs
2022-01-05 21:40:48 +08:00

24 lines
614 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
namespace XCharts
{
[UnityEngine.Scripting.Preserve]
internal sealed class VesselHandler : MainComponentHandler<Vessel>
{
public override void Update()
{
if (chart.isPointerInChart)
{
component.context.isPointerEnter = false;
return;
}
var vessel = component;
vessel.context.isPointerEnter = vessel.show
&& Vector3.Distance(vessel.context.center, chart.pointerPos) <= vessel.context.radius;
}
}
}