using UnityEngine; using System.Collections; namespace Pathfinding.Examples { /// Helper script in the example scene 'Turn Based' [HelpURL("https://arongranberg.com/astar/documentation/stable/astar3dbutton.html")] public class Astar3DButton : MonoBehaviour { public GraphNode node; public void OnHover (bool hover) { // TODO: Play animation } public void OnClick () { // TODO: Play animation } } }