How do I stop tracking in Vuforia for Unity

tracking, unity-game-engine, vuforia

Solution

Just solved using:

TrackerManager.Instance.GetTracker<ObjectTracker>().Stop();

Don't forget to add:

using Vuforia;

Problem

I'm trying to stop Vuforia from tracking but doesn't stop the camera. I found this answer but it doesn't seem to work. How to make Vuforia stop tracking in Unity? Any ideas? Thanks in advance!

Original source