Man I really wish all tutorial videos were like this. So professional, straight to the point, and gives examples for various scenarios. Love your work!
I really hope your channel blows up. It's quality content that's not only helpful, but very fun to watch. I could binge watch these even if I'm not trying to make a game
Had to figure this out completely on my own (No physics jumping that is) but I'm glad this tutorial exists nonethless because I know there's definitely a better way to it.
Not sure if you'll be reacting on this one but I have an issue with the "PhysicsBody-less Jumping Code(?)". Where an IN-engine only bug happens when the player hits the ground whilst the fps is lower than 60fps: First of all. I HATE PRE MADE PHYSICS inside of engines due to the loss of control and unneeded complexity it causes when developing. SO I was really happy to see your video that was able to talk about both of em. Okay the issue I am having is that the player clips straight through the ground, due to the raycast not detecting the ground on time. This only occurs when the FPS is lower than usual (or less stable). What happens is that the distance between each frame of falling becomes bigger and less accurate. Thereby creating the bug that my player falls through the ground eventhough the acceleration is Clamped on a low value, rayCast is set to an immense distance (tested multiple distances) and engine was running at 40 - 60 fps. How will I be able to counter this specific issue? Or what could have been different from your code or setup (think of different Model Collision Shapes etc.)? Also at last; I am working in 3D with a minimalist environment (lowpoly / no active lighting / 5 scripts tops running) thanks
Assuming that the only issue is that the object is moved past the ground before it can detect it, then you'll want to try a lookahead raycast for the movement that's going to take place in the next frame and then move the object back if it detects a surface. It sounds like you're already doing something like this so if you don't mind sharing your code with me at support@gamedevbeginner.com I can take a look and try to help.
Great video! I had a question, how can I make the shortest jump even shorter? because as it stands the smallest jump I can make is generally close to half the size of the maximum jump no matter how little I press space, but for example in games like Hollow Knight, it feels like I have a lot of precise control over how long I jump, including if I want to do a really short jump.
Hello friends, I am facing a problem, Is that player is constantly jumping a bit up ( In Unity2D ), I was following this article and video. However when I increase the "Offset" to 1 On the GroundCheck Script the player does not jump by itself but a gap is created between the player and the ground..... I'm not using physics system my approach is manual gravity.
There's a ground check section in the article that this video is based on, if that helps: gamedevbeginner.com/how-to-jump-in-unity-with-or-without-physics/#ground_check
A problem I currently have is the jumping. Since it checks if we are grounded right in the frame after we jumped, my raycast is still touching the ground (didn't have enough frames yet to distance ourselfs far enough from the ground with the jump) and sets the isGrounded state right after the jump frame and cancels is. A hack I use to make it playable is to disable the groundcheck raycast for a little while after jumping but that feels like a walk-around instead of a solution. Why doesn't this happen in your game?
They are using the collider itself to check the isGrounded check and utilizing the bottom edge of the collider instead of doing a raycast. This video covers this: ua-cam.com/video/c3iEl5AwUF8/v-deo.html
wow I use the most unconventional way possible to make a player jump w/o physics 😅 I used lerping… lerp for the jump and until the player hits apex, then lerp for falling (gravity) is then triggered.. also, I used OnCollisionEnter to detect whether the player is grounded or not lmao
I didn't consider slopes when I made it. I assume it would but you'd just need to change what you define as up. e.g. if the player is rotated, on the slope, do you want them to jump straight up? (Vector3.up) or up relative to them? (transform.up)
Hey, I know this is an old video, but I tried to follow your steps in order to make a 3D jump in Unity and it was going pretty well right up until the last part where I got an error that says: "There is no argument given that corresponds to the required formal parameter 'position' of 'Physics.ClosestPoint(Vector3, Collider, Vector3, Quaternion'
In the video I used Physics2D.ClosestPoint for a 2D example, which takes a position and a collider, the 3D version, which I think you may be using, takes more parameters, the point to check from and then the collider, its position and rotation. Assuming that you have a collider reference, you could use Collider.ClosestPoint instead, and pass in just the position (see here: docs.unity3d.com/ScriptReference/Collider.ClosestPoint.html ) hope that helps.
@@GameDevBeginner Hey, thanks for the quick reply, but I'm now having a similar problem with Physics.OverlapBox as it works much differently than Physics2D.OverlapBox
@@GameDevBeginner Hey, thanks for the quick reply, but I'm having trouble with the ground check as Physics.OverlapBox uses different parameters than Physics2D.OverlapBox and I don't know any other way to do it.
I believe the original Super Mario is a faster fall style jump. David Strachan did an analysis of it in his article here: www.davetech.co.uk/gamedevplatformer
I use almost the same method to jump to a specific height and yet my 3D capsule jumps approximately 1.3 units instead of 3: AddForce(transform.up * Mathf.Sqrt(2 * -Physics.gravity.y * height), ForceMode.VelocityChange) Cannot figure out why and how to solve it. So infuriating!!!!🤬🤯
Hey! Saddly I am very much a begginer and cannot help you. Instead, I bring you yet a question. Why do we need to use squareroot to get the impulse force? I'm thinking about the basics of potencial gravitational energy and jump force in newtownian physics and I can only draw a resemblance with Force = mass * height * gravity. However, when I apply this formula, my jump is overwhelmingly heigher than I expected, and is only fixed by using the formular in the video: F = mass * sqrt(height * gravity * -2)! Would you mind to enlight me on the subject?
Man I really wish all tutorial videos were like this. So professional, straight to the point, and gives examples for various scenarios. Love your work!
I really hope your channel blows up. It's quality content that's not only helpful, but very fun to watch. I could binge watch these even if I'm not trying to make a game
Thanks so much!
Found this right before I was about to give up, got it to work at midnight,
you my guy are an answer to my prayers 🙏🏾🙏🏾
So happy to hear it helped you!
The way of Teach is just amazing
Had to figure this out completely on my own (No physics jumping that is) but I'm glad this tutorial exists nonethless because I know there's definitely a better way to it.
Personally I also like to add the coyote time variable to give those extra millis to trigger when making big jumps from platforms.
Uprising Brackeys 2.
Keep it up!
Not sure if you'll be reacting on this one but I have an issue with the "PhysicsBody-less Jumping Code(?)". Where an IN-engine only bug happens when the player hits the ground whilst the fps is lower than 60fps:
First of all. I HATE PRE MADE PHYSICS inside of engines due to the loss of control and unneeded complexity it causes when developing. SO I was really happy to see your video that was able to talk about both of em.
Okay the issue I am having is that the player clips straight through the ground, due to the raycast not detecting the ground on time. This only occurs when the FPS is lower than usual (or less stable). What happens is that the distance between each frame of falling becomes bigger and less accurate. Thereby creating the bug that my player falls through the ground eventhough the acceleration is Clamped on a low value, rayCast is set to an immense distance (tested multiple distances) and engine was running at 40 - 60 fps.
How will I be able to counter this specific issue? Or what could have been different from your code or setup (think of different Model Collision Shapes etc.)?
Also at last; I am working in 3D with a minimalist environment (lowpoly / no active lighting / 5 scripts tops running)
thanks
Assuming that the only issue is that the object is moved past the ground before it can detect it, then you'll want to try a lookahead raycast for the movement that's going to take place in the next frame and then move the object back if it detects a surface. It sounds like you're already doing something like this so if you don't mind sharing your code with me at support@gamedevbeginner.com I can take a look and try to help.
Amazing tutorial, thanks so much!
Nice 14:00, but what about slopes (45°, 60°, etc)? How to calculate this offset height in this case?
Great video! I had a question, how can I make the shortest jump even shorter? because as it stands the smallest jump I can make is generally close to half the size of the maximum jump no matter how little I press space, but for example in games like Hollow Knight, it feels like I have a lot of precise control over how long I jump, including if I want to do a really short jump.
can you please tell me what compiler are you using. It looks so nice
The visual studio theme is Gruvbox, if I remember right
Always quality videos!
Thank you!
I actually make my character jump by instead making the entire world move away from the player
That sounds insane!
@@bovineox1111 XD I was just kidding
Hello friends, I am facing a problem, Is that player is constantly jumping a bit up ( In Unity2D ), I was following this article and video. However when I increase the "Offset" to 1 On the GroundCheck Script the player does not jump by itself but a gap is created between the player and the ground.....
I'm not using physics system my approach is manual gravity.
this is amazing i love u man
On a slightly different note, which editor are you using? MonoDevelop?
It's Visual Studio (Gruvbox theme)
@@GameDevBeginner Thanks!
Can you do the jump height cancel on the jump with out physics?
Awesome video
Thanks!
I do exactly the same, but controlling jump height doesn't work for me. I can jump as many times in the air as I want..
Finlly thanks dude
Happy to help!
Great video :)
Is there a way to have an object jump without physics for 3D objects instead of 2D?
And also thanks for this tutorial, it was really helpful
Yes. The same principle applies, where you have to make your own gravity, move the objet using its transform and do ground checks, just in 3D.
Please let me know? How to implement the trajectory route behind the object? Thanks. 😘
It's a line renderer, based on positions set in fixed update.
@@GameDevBeginner Tanks very much.😘😘😘😘
What is the final solution for slope question?
How do u actually calculate the "buttonpresswindow"?
If I remember right it's not a calculation, it's a just value that you set manually and can adjust.
@@GameDevBeginner alright thanks man👍
how to make double jump in this code wihtout physics
Hey Could U Maybe Give Me Code For A Working Jump 2d That U Cant Jump In Air Would Helps Loads Thanks
There's a ground check section in the article that this video is based on, if that helps: gamedevbeginner.com/how-to-jump-in-unity-with-or-without-physics/#ground_check
hey! do you happen to still have the code for this? For the part where you alter the velocity of the rigidbody directly
There are some code examples in the original article if that helps? gamedevbeginner.com/how-to-jump-in-unity-with-or-without-physics/
A problem I currently have is the jumping. Since it checks if we are grounded right in the frame after we jumped, my raycast is still touching the ground (didn't have enough frames yet to distance ourselfs far enough from the ground with the jump) and sets the isGrounded state right after the jump frame and cancels is. A hack I use to make it playable is to disable the groundcheck raycast for a little while after jumping but that feels like a walk-around instead of a solution. Why doesn't this happen in your game?
They are using the collider itself to check the isGrounded check and utilizing the bottom edge of the collider instead of doing a raycast. This video covers this: ua-cam.com/video/c3iEl5AwUF8/v-deo.html
wow I use the most unconventional way possible to make a player jump w/o physics 😅
I used lerping…
lerp for the jump and until the player hits apex, then lerp for falling (gravity) is then triggered..
also, I used OnCollisionEnter to detect whether the player is grounded or not lmao
Can this deal with slopes?
I didn't consider slopes when I made it. I assume it would but you'd just need to change what you define as up. e.g. if the player is rotated, on the slope, do you want them to jump straight up? (Vector3.up) or up relative to them? (transform.up)
m_rigidbody.gravityscale = gravityScale; Why that line sew me error
Are you using a 3D Rigidbody? 2D Rigidbody has the gravity scale property, 3D doesn't.
Hey, I know this is an old video, but I tried to follow your steps in order to make a 3D jump in Unity and it was going pretty well right up until the last part where I got an error that says: "There is no argument given that corresponds to the required formal parameter 'position' of 'Physics.ClosestPoint(Vector3, Collider, Vector3, Quaternion'
In the video I used Physics2D.ClosestPoint for a 2D example, which takes a position and a collider, the 3D version, which I think you may be using, takes more parameters, the point to check from and then the collider, its position and rotation. Assuming that you have a collider reference, you could use Collider.ClosestPoint instead, and pass in just the position (see here: docs.unity3d.com/ScriptReference/Collider.ClosestPoint.html ) hope that helps.
@@GameDevBeginner Hey, thanks for the quick reply, but I'm now having a similar problem with Physics.OverlapBox as it works much differently than Physics2D.OverlapBox
@@GameDevBeginner Hey, thanks for the quick reply, but I'm having trouble with the ground check as Physics.OverlapBox uses different parameters than Physics2D.OverlapBox and I don't know any other way to do it.
There is no explanation on how to do a ground check for unity based physics
How to make Mario style jumping mechanism?
I believe the original Super Mario is a faster fall style jump. David Strachan did an analysis of it in his article here: www.davetech.co.uk/gamedevplatformer
all the physic hump doesn't work at all. They seem too heavy to lift up no matter how many gravity I scale it
I use almost the same method to jump to a specific height and yet my 3D capsule jumps approximately 1.3 units instead of 3:
AddForce(transform.up * Mathf.Sqrt(2 * -Physics.gravity.y * height), ForceMode.VelocityChange)
Cannot figure out why and how to solve it. So infuriating!!!!🤬🤯
Hey! Saddly I am very much a begginer and cannot help you. Instead, I bring you yet a question.
Why do we need to use squareroot to get the impulse force? I'm thinking about the basics of potencial gravitational energy and jump force in newtownian physics and I can only draw a resemblance with Force = mass * height * gravity. However, when I apply this formula, my jump is overwhelmingly heigher than I expected, and is only fixed by using the formular in the video: F = mass * sqrt(height * gravity * -2)! Would you mind to enlight me on the subject?