1500 Archers on a 28.8: Network Programming in Age of Empires and Beyond
https://www.gamasutra.com/view/feature/3094/1500_archers_on_a_288_network.php
Dec 23, 2019
Dec 10, 2019
[UGUI] Detecting UI Touch
using UnityEngine.EventSystems;
EventSystem.current.IsPointerOverGameObject(int pointerId)
ex) Excluding Touch on UI
EventSystem.current.IsPointerOverGameObject(int pointerId)
ex) Excluding Touch on UI
Touch touch = Input.touches[0];
if (EventSystem.current.IsPointerOverGameObject(touch.fingerId))
{
return;
}
| cs |
[UGUI] Get Clicked/Touched UI GameObject
using UnityEngine.EventSystems;
Apr 13, 2019
refusing to merge
fatal error: refusing to merge unrelated histories
< cmd >
git pull origin master --allow-unrelated-histories
< cmd >
git pull origin master --allow-unrelated-histories
Subscribe to:
Posts (Atom)