Честно новичек в юнити и хотелось бы хоть как то свою первую игру разнообразить добавлением записок а когда записка открывается то курсор не появляется что бы закрыть записку что делать ( на всякий случай вот мой скрипт) using System.Collections; using System.Collections.Generic; using UnityEngine;
public class Note : MonoBehaviour { [SerializeField] private GameObject panel;
// Start is called before the first frame update void Start() {
}
// Update is called once per frame void Update() {
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Note : MonoBehaviour
{
[SerializeField] private GameObject panel;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void OnTriggerEnter(Collider other)
{
if(other.GetComponent<FirstPersonMovement>())
{
Destroy(gameObject);
panel.SetActive(true);
}
}
}