0
I’m trying to develop a simple Android game in Unity, with drag and drop function.
I used the following method to catch the object:
public void drag(){
transform.position = Input.mousePosition;
}
Problem: Accepting simultaneous screen taps and I want you to accept just one tap at a time
How can I fix this?