augmented reality - Local Area Description: Learning -
i've started learning google tango , having troubles in understanding how implement local area description learning. have followed 1 of how-to-guides documentation, 1 placing virtual objects in ar , wanted app remember places kittens placed. attach scene unity , script i've tried enable savecurrent method areadescription. the scene unity , following code 1 how-to-guide have tried create thread saving current areadescription public class kittyuicontroller : monobehaviour { thread thread; public gameobject m_kitten; private tangopointcloud m_pointcloud; void start() { m_pointcloud = findobjectoftype<tangopointcloud>(); thread = new thread(thread123); } void update() { if (input.touchcount == 1) { // trigger place kitten function when single touch ended. touch t = input.gettouch(0); if (t.phase == touchphase.ended) { placekitten(t.position); thread.start(); } } } void placekitten(ve