public static void Stop(string reason = null, bool stopFollow = true)
 {
     if (stopFollow)
     {
         FollowMe.StopFollow(reason);
     }
     currentCamera?.Stop();
     currentCamera = null;
 }