Files
Crash-Course/Assets/EventSystemizer.cs

11 lines
238 B
C#
Raw Normal View History

2025-03-07 10:03:16 -05:00
using UnityEngine;
using UnityEngine.EventSystems;
public class EventSystemizer : MonoBehaviour
{
private void Update()
{
//foreach (EventSystem system in FindObjectsByType<EventSystem>(FindObjectsSortMode.None))
}
}