Samsung Gear VR - open menu item from Gear VR tap click

722 Views Asked by At

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

enter image description here

1

There are 1 best solutions below

1
On

I have yet to try this myself but according to the unity docs you should replace:

Input.GetButtonDown(0)

with

Input.GetMouseButtonDown(0)

-EDIT- Also a suggestion here to use:

Input.GetButtonDown("Mouse 0")

-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:

public Text timerText;
public float timeLeft;

void Start ()
{
    timeLeft = 5;
}

void Update()
{
    timeLeft -= Time.deltaTime;
    timerText.text = timeLeft.ToString ();

    if(timeLeft < 0)
    {
        GameOver();
    }
}

void GameOver()
{
    timerText.text = "-- --";
    // restart on tap
    if (Input.GetMouseButtonDown (0)) 
    {
        Start ();
    }
}