List
Lose Track But Position Remains same
Posted Date: 2017-12-14 15:07     Edited Date: 2018-01-20 5:19     Writer: inactive

How to Keep Position of the Object When Image Target is Lose 

Can Anyone Say Solution for this Issue?

Posted Date: 2017-12-15 0:40     Edited Date: 2017-12-15 0:40     Writer: inactive

Hi,

You can give condition to control game object visibility.

In ImageTrackerSample.cs file

if (trackingResult.GetCount() == 0)

{

  // Make all image trackable object invisible or not

}

or ImageTrackableBehaviour.cs

public override void OnTrackFail()

{

  // Make all renderer, collider of this game object inactive or not

}

Thanks,

- Maxst support team