4
0
This repository has been archived on 2023-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
TremendousTaxi/game/Assets/Scripts/Pfeil.cs
2022-09-24 20:55:53 +02:00

15 lines
250 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Pfeil : MonoBehaviour
{
public Transform target;
// Update is called once per frame
void Update()
{
transform.LookAt(target);
}
}