I create menu (canvas ui) with Render mode work space , it consist from two buttons
Start
Quit
I try open start with Gear taps , but it dosent work
sing UnityEngine;
using System.Collections;
public class LoadOnClick : MonoBehaviour {
public void LoadScene(int Level){
if (Input.GetButtonDown (0)) {
Application.LoadLevel (Level);
}
}
}
Notice it work with me when I goes in play mode , with mouse click
sugguestion should I make tag to button
what I want make sure I understand well , when On CLick fired to run my script
can I specify input here
I have yet to try this myself but according to the unity docs you should replace:
with
-EDIT- Also a suggestion here to use:
-Further edit- I did a quick test and
Input.GetMouseButtonDown (0)
was the only variant of the three that registered a click so I would use that.This example project displays and resets a timer on tapping the pad: