-2

Is there any reason tap input is not getting through to a Google Cardboard App made with Unity for Android? Works in the editor, as a mouse click. In the cardboard script settings 'Tap is Trigger' is ticked. Also cannot get magnetic input, am using the method from here: www.andrewnoske.com

chris
  • 4,840
  • 5
  • 35
  • 66

1 Answers1

2

ok turns out it is hidden in the cardboard sdk. if you do something like:

void Update () {

  if (Cardboard.SDK.CardboardTriggered) {     
  //something here;   

}

that should do it...