1.What is the difference in making my game compatible for IOS,android & windows
2.How do you detect touch in android (the code?)
I want the code in C#
Not sure if you’ve seen the docs or not, but the page here:
has 3 examples showing how to use touch events. There are 3 buttons top right of the page to choose the language.
If you are making a game for Windows, then you’ll use keyboard and mouse for the user input. The Input class has functions which can process these for you. For mobiles, you re-design your user input code to use Touch events.
1 Like
Thank you sir!