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

View File

@@ -0,0 +1,17 @@
using UnityEngine;
using TMPro;
public class MiseAJourDebug : MonoBehaviour
{
[SerializeField] private TextMeshProUGUI Debug_text;
void OnEnable()
{
Application.logMessageReceived += GererLog;
}
void GererLog(string logString, string stackTrace, LogType type)
{
Debug_text.text = $"{type}: {logString} at {stackTrace}";
}
}