Hii,
I am a new developer on mobile application development and also new for Gideros Mobile.
I am asking actually a simple question.
Do I have to implement both MOUSE_DOWN and TOUCHES_BEGIN event for single touch?
What is the difference between them?
Thanks for your time.
Comments
If you want to handle multi touch, you should implement TOUCHES_BEGIN, it will provide you more information about current touch id and all available touches on the screen.
All you need to do is in the project settings you can set to generate both touches and mouse events for both PC and device.
Thanks for your clear answer.