I have two button. one to jump and other to fire weapon. I want that both button respond at the same time when i touch them. like multitouch. how to do it?
All touch inputs are available via Input.Touches. So for multitouch input make sure your buttons are checking and reacting to both Input.Touches[0]
and Input.Touches[1]
.