Copie depuis Unity VCS vers GitHub

This commit is contained in:
Denis L.
2025-12-10 18:51:40 +01:00
parent 5cfd9de581
commit 7383621db3
902 changed files with 588195 additions and 0 deletions

19
Assets/Scripts/MonTest.cs Normal file
View File

@@ -0,0 +1,19 @@
using UnityEngine;
using TMPro;
using UnityEngine.EventSystems;
/*Faites vos tests avec ce fichier. À RETIRER DE LA VERSION FINALE.*/
public class TestInputsOVR : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler
{
public TextMeshProUGUI debugText;
public void OnPointerEnter(PointerEventData eventData)
{
Debug.Log("Pointeur entré sur bouton Fermer.");
}
public void OnPointerExit(PointerEventData eventData)
{
Debug.Log("Pointeur sorti du bouton Fermer.");
}
}