Make lives work

This commit is contained in:
RochesterX
2025-03-07 10:03:16 -05:00
parent 0e4e6d1b8b
commit 6528d1050f
9 changed files with 108 additions and 35 deletions

10
Assets/EventSystemizer.cs Normal file
View File

@@ -0,0 +1,10 @@
using UnityEngine;
using UnityEngine.EventSystems;
public class EventSystemizer : MonoBehaviour
{
private void Update()
{
//foreach (EventSystem system in FindObjectsByType<EventSystem>(FindObjectsSortMode.None))
}
}