Startup() public method

Manual initalization step 2: Call this to connect to the Tango service. After connecting to the Tango service, you will get updates for Motion Tracking, Depth Sensing, and Area Learning. If you have a specific Area Description you want to localize too, pass that Area Description in here.
public Startup ( AreaDescription areaDescription ) : void
areaDescription AreaDescription If not null, the Area Description to localize to.
return void
Example #1
0
 /// <summary>
 /// Start this instance.
 /// </summary>
 public void reStart()
 {
     m_tangoApplication.Unregister(this);
     m_tangoApplication.Register(this);
     m_tangoApplication.Shutdown();
     m_tangoApplication.Startup(null);
     AndroidHelper.InitTangoUx();
     SetHoldPosture(m_holdPosture);
 }