15 lines
253 B
C#
Raw Normal View History

2024-11-01 16:55:46 +08:00
using UnityEngine;
public class CockpitHUD : MonoBehaviour
{
[Header("Fighter Ship")]
public Transform fighterShip;
// Update is called once per frame
void Update()
{
fighterShip.forward = Vector3.forward;
}
}