public static bool CameraIsAutoControlEnabled(CAMERA_CONTROL control)
 {
     switch (control)
     {
     default:
         Debug.LogWarning("CameraIsAutoControlEnabled(): Control not supported -- " + control.ToString());
         return(false);
     }
 }
 public static void CameraSetAutoControlEnabled(CAMERA_CONTROL control, bool value)
 {
     switch (control)
     {
     default:
         Debug.LogWarning("CameraSetAutoControlEnabled(): Control not supported -- " + control.ToString());
         break;
     }
 }