/// <summary>
 /// The UnhighlightObject method calls the Unhighlight method on the highlighter attached to the given GameObject.
 /// </summary>
 /// <param name="model">The GameObject to attempt to call the Unhighlight on.</param>
 public static void UnhighlightObject(GameObject model)
 {
     SetupInstance();
     if (instance != null)
     {
         instance.InternalUnhighlightObject(model);
     }
 }