i have used ngui to make the button
void OnClick(){
Debug.Log("OnClicked");
clickedBtn();
}
void clickedBtn(){
Debug.Log("click");
}
here is my script, but funny that when i use mouse click , it just detect once click , it's good
but when i use unity remote to click it , it will detect twice click
anyone have the same question with me? or i have do sth wrong?
hope someone can help me thx very much~