123456789101112131415161718 |
- using UnityEngine;
- using System.Collections;
- namespace Pathfinding.Examples {
-
- [HelpURL("http://arongranberg.com/astar/documentation/stable/class_pathfinding_1_1_examples_1_1_astar3_d_button.php")]
- public class Astar3DButton : MonoBehaviour {
- public GraphNode node;
- public void OnHover (bool hover) {
-
- }
- public void OnClick () {
-
- }
- }
- }
|