Hello, Guys. I’m Hizard.
I have a question regarding the movement and jumping of a third-person character.
I want the final result to be similar to this post.
My initial attempt involved using the Rigidbody’s teleport method to move the character. However, when I added jumping to this method, the jump height during movement was too low.
Furthermore, when I tried to move after jumping, I got a slow descent.
After researching, I found that I needed to address this physically, so I used applyForce.
However, when using this function, the character doesn’t move.
However, in this example, due to the use of teleport, when I press W, A, S, or D after jumping, the character remains suspended in mid-air. How can I resolve this issue?