Hey, i'm playing a little bit with AR. But in my simple test is the video from the camera lagging like hell on the Nexus 5. The fps counter says, it runs with 60 FPS. Has anyone some experience with AR.
I just attached a plane (self Illu Mat) to the Dive 2.0 Camera and give it this script:
public class camera : MonoBehaviour {<br /> WebCamTexture back;<br /> // Use this for initialization<br /> void Start () {<br /> back = new WebCamTexture (requestedWidth: 320, requestedHeight: 180);<br /><br /> renderer.material.mainTexture = back;<br /> back.Play ();<br /> }<br /> // Update is called once per frame<br /> void Update ()<br /> {<br /> }<br />}<br />