2024-11-01 16:55:46 +08:00

15 lines
253 B
C#

using UnityEngine;
public class CockpitHUD : MonoBehaviour
{
[Header("Fighter Ship")]
public Transform fighterShip;
// Update is called once per frame
void Update()
{
fighterShip.forward = Vector3.forward;
}
}