2026-04-18 13:57:19 -04:00
|
|
|
|
using UnityEngine;
|
2025-11-25 08:19:33 -05:00
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
namespace SickscoreGames.HUDNavigationSystem
|
|
|
|
|
|
{
|
|
|
|
|
|
[AddComponentMenu (HNS.Name + "/HNS Player Controller")]
|
|
|
|
|
|
public class HNSPlayerController : MonoBehaviour
|
|
|
|
|
|
{
|
|
|
|
|
|
#region Variables
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region Main Methods
|
|
|
|
|
|
void Start ()
|
|
|
|
|
|
{
|
|
|
|
|
|
if (HUDNavigationSystem.Instance != null)
|
|
|
|
|
|
HUDNavigationSystem.Instance.ChangePlayerController (this.gameObject.transform);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region Utility Methods
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region Subclasses
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|