Exemple #1
0
 private void FixedUpdate()
 {
     if (!GameManager.isPaused)
     {
         //all camera and physics goes through here
         playerCam.CameraClipping();
         CheckIfGrounded();
         BetterJumpPhysics();
     }
 }