Files
XCharts/Runtime/Component/Vessel/VesselHandler.cs
2022-02-19 22:37:57 +08:00

24 lines
622 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
namespace XCharts.Runtime
{
[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;
}
}
}