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/Interactable/ItemSelector.cs

44 lines
1021 B
C#
Raw Normal View History

using UnityEngine;
public class ItemSelector : MonoBehaviour
{
public static ItemSelector instance;
2023-06-01 17:03:48 +02:00
[SerializeField] private Camera cam;
[SerializeField] private LayerMask mask;
[SerializeField] private float range = 1;
public InteractableItem Selected { get; private set; }
// Start is called before the first frame update
2023-06-01 17:03:48 +02:00
private void Start()
{
instance = this;
}
2023-06-01 17:03:48 +02:00
// Update is called once per frame
private void Update()
{
}
private void FixedUpdate()
{
2023-06-01 17:03:48 +02:00
var ray = cam.ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
2023-06-01 17:03:48 +02:00
if (Physics.Raycast(ray, out hit, range, mask))
{
2023-06-01 17:03:48 +02:00
if (Selected != null || hit.transform.gameObject == null) Selected.Disable();
Selected = hit.transform.gameObject.GetComponent<InteractableItem>();
Selected.Enable();
print(Selected);
}
else
{
2023-06-01 17:03:48 +02:00
if (Selected != null) Selected.Disable();
}
}
2023-06-01 17:03:48 +02:00
}