This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
station_obscurum_unity/Assets/Scripts/Player/PlayerAim.cs

27 lines
650 B
C#
Raw Normal View History

using UnityEngine;
2023-06-01 20:25:46 +02:00
namespace Player
{
2023-06-01 20:25:46 +02:00
public class PlayerAim : MonoBehaviour
{
public static PlayerAim active;
public Vector3 targetPosition;
2023-06-01 17:03:48 +02:00
2023-06-01 20:25:46 +02:00
private Camera cam;
2023-06-01 17:03:48 +02:00
2023-06-01 20:25:46 +02:00
// Start is called before the first frame update
private void Start()
{
active = this;
cam = GetComponent<Camera>();
}
2023-06-01 20:25:46 +02:00
// Update is called once per frame
private void Update()
{
var r = new Ray(cam.transform.position, cam.transform.forward);
RaycastHit hit;
if (Physics.Raycast(r, out hit)) targetPosition = hit.point;
}
}
2023-06-01 17:03:48 +02:00
}