when i jump my player jumps but falls down slowly what should i do code:
if (Input.GetKey(KeyCode.Space))
{
rb.AddForce(Vector3.up * jumpForce * 50);
}
when i jump my player jumps but falls down slowly what should i do code:
if (Input.GetKey(KeyCode.Space))
{
rb.AddForce(Vector3.up * jumpForce * 50);
}
try adjusting the “Gravity Multiplier” in the Inspector for the player.