123456789101112131415161718192021 |
- namespace textUtility
- {
- using System.Collections;
- using System.Collections.Generic;
-
- using UnityEngine;
- using UnityEngine.EventSystems;
-
- public class UITest : EventSystem
- {
- protected override void Update()
- {
- base.Update();
- Debug.Log(0);
- }
- }
- }
|