Example
https://gist.github.com/danielbierwirth/0636650b005834204cb19ef5ae6ccedb
puts ":)"
Jul 20, 2020
May 17, 2020
Jan 8, 2020
[Link] Unity DOTS
- Job system and burst compiler
https://www.undefinedgames.org/2019/10/22/unity-c-job-system-and-burst-compiler-dots-introduction/
- ECS
https://www.youtube.com/playlist?list=PLzDRvYVwl53s40yP5RQXitbT--IRcHqba
https://www.undefinedgames.org/2019/10/22/unity-c-job-system-and-burst-compiler-dots-introduction/
- ECS
https://www.youtube.com/playlist?list=PLzDRvYVwl53s40yP5RQXitbT--IRcHqba
Dec 23, 2019
[Link] Network Programming in Age of Empires and Beyond
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
https://www.gamasutra.com/view/feature/3094/1500_archers_on_a_288_network.php
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 |
Subscribe to:
Posts (Atom)