Posts by Guilherme Nunes • 21 points
1 post
-
2
votes1
answer162
viewsA: Drag and drop Unity
As you are developing for android, can treat the touches separately, so: Touch myTouch = Input.GetTouch(0); Touch[] myTouches = Input.touches; for(int i = 0; i < Input.touchCount; i++) { //faca…