Hi, I'm trying to implement my first application usign Vuforia extention.
The project consist of four scenes: the firs one is a simple intro page where I visualize three buttons and when the user clicks one of them, I want to load the corresponding AR scene.
The problem is that, as soon as I import the Vuforia package, all my buttons (realized with GUITextures) don't work anymore, even in the intro page, where I don't even use Vuforia camera and so on.
As usual, I attached the "OnTouchDown" script to my main camera.
#pragma strict
#pragma implicit
#pragma downcast
function Update () {
var hit:RaycastHit;
for (var i=0; i
↧