/// <summary>
 /// The TrackedObjectByIndex method is used to find the GameObject of a tracked object by its generated index.
 /// </summary>
 /// <param name="index">The index of the tracked object to find.</param>
 /// <returns>The tracked object that matches the given index.</returns>
 public static GameObject TrackedObjectByIndex(uint index)
 {
     return(VRTK_SDK_Bridge.GetTrackedObjectByIndex(index));
 }