{
gravityContributionMultiplier += Time.deltaTime * gravityComebackMultiplier;
}
//Reduce the influence of the gravity while holding the Jump button
if (isJumping)
gravityContributionMultiplier *= gravityDivider; //Reduce the gravity effect
//Calculate the final verticalMovement
if (!characterController.isGrounded)