rabidus-test/Assets/Scripts/SpeedText.cs

13 lines
258 B
C#
Raw Normal View History

2023-07-24 16:38:13 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2023-08-15 17:38:54 +03:00
public class SpeedText : UITextDisplayBase
2023-07-24 16:38:13 +03:00
{
2023-08-15 17:38:54 +03:00
protected override void Awake()
2023-07-24 16:38:13 +03:00
{
2023-08-15 17:38:54 +03:00
base.Awake();
_textChanger = FindObjectOfType<ShipPathFollower>();
2023-07-24 16:38:13 +03:00
}
}