|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SpeedText : UITextDisplayBase
|
|
{
|
|
protected override void Awake()
|
|
{
|
|
base.Awake();
|
|
_textChanger = FindObjectOfType<PlayerInputHandler>().GetComponent<ShipPathFollower>();
|
|
}
|
|
}
|