I am making an app in Unity3d. Its about geocaching, when user reach at specific location and keep device at specific direction let say on some building then app show a 2d or 3d objects, and that object should be stuck with building either user move device camera. What i did so far I added a plan and add texture on it and when user reach a particular location I am showing that texture but this texture is attach to the Camera and its moving with device movements. I use gyro but thats not work which I required. Can anyone help me on that. This will be great for me. Thanks in advance.
Edited
if(Input.GetKey(KeyCode.W)){
transform.Translate(new Vector3(0,0,1));
}
if(Input.GetKey(KeyCode.S)){
transform.Translate(new Vector3(0,0,-1));
}
if(Input.GetKey(KeyCode.A)){
transform.Translate(new Vector3(-1,0,0));
}
if(Input.GetKey(KeyCode.D)){
transform.Translate(new Vector3(1,0,0));
}
Here is I am doing with keyboard for simulator, but i need sort of same thing. I also tried for Gyro but as you know it'll not achieve from Gyro because we can't get whether device move forward or backward. I am still thinking how to achieve this target If someone have idea lets share with me.