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