Example #1
0
 /**
  * Gets the angle by which the Player's FirstPersonCamera is looking up or down, with negative values looking upward.
  */
 public float GetTilt()
 {
     if (firstPersonCamera != null)
     {
         return(firstPersonCamera.GetTilt());;
     }
     return(0f);
 }