blob: 41608cdc51fb4afcef3c0313fccc9aad1702def7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using UnityEngine;
using System.Collections;
namespace Pathfinding.Examples {
/// <summary>Helper script in the example scene 'Turn Based'</summary>
[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
}
}
}
|