3 ways to do a Ground Check in Unity

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ส.ค. 2024
  • ✅ Get the Project files and Utilities at unitycodemonke...
    Let's look at 3 different methods for doing a Ground Check which is a necessity if you're making a Platformer.
    If you have any questions post them in the comments and I'll do my best to answer them.
    🔔 Subscribe for more Unity Tutorials / @codemonkeyunity
    See you next time!
    📦 Grab the game bundle at unitycodemonke...
    📝 Get the Code Monkey Utilities at unitycodemonke...
    #unitytutorial #unity3d #unity2d
    --------------------------------------------------------------------
    Hello and welcome, I am your Code Monkey and here you will learn everything about Game Development in Unity 2D using C#.
    I've been developing games for several years with 7 published games on Steam and now I'm sharing my knowledge to help you on your own game development journey.
    You can see my games at www.endlessloopstudios.com
    --------------------------------------------------------------------
    - Website: unitycodemonke...
    - Twitter: / unitycodemonkey
    - Facebook: / unitycodemonkey

ความคิดเห็น • 431

  • @ignacioarenasguerra9696
    @ignacioarenasguerra9696 4 ปีที่แล้ว +115

    It's necesary to make a change in the BoxCast. You need to aply a size correction for avoiding the situation when the character is next to a wall and the isGrounded function detects the Wall and let you jump again and again.
    Code:
    RaycastHit2D raycastHit = Physics2D.BoxCast(body.bounds.center, body.bounds.size - new Vector3(0.1f, 0f, 0f), 0f, Vector2.down, extraHeightTest, platformLayerMask);
    PD: Sorry for my english :)
    PD2: This video was awesome!

    • @bob7388
      @bob7388 4 ปีที่แล้ว +3

      Thank you :D

    • @SMT-ks8yp
      @SMT-ks8yp 3 ปีที่แล้ว +8

      Or you can exploit this for walljumps, I guess.

    • @raulsangonzalo
      @raulsangonzalo 3 ปีที่แล้ว +1

      you also have to add 0.1f to the y to prevent grounded when you hit the roof!

    • @GSBroker
      @GSBroker 3 ปีที่แล้ว +8

      @@SMT-ks8yp You joke, but this is how many creative features in games are born -- they start as bugs.

    • @user-xg4np9gu4d
      @user-xg4np9gu4d 3 ปีที่แล้ว

      you can also reduce the size of the collider a bit.

  • @rupeshpandey6603
    @rupeshpandey6603 4 ปีที่แล้ว +26

    For anyone who is wondering, What was the Drawray thingy, Here it is.
    Debug.DrawRay(boxCollider2d.bounds.center + new Vector3(boxCollider2d.bounds.extents.x, 0), Vector2.down * (boxCollider2d.bounds.extents.y + extraHeightText), rayColor);
    Debug.DrawRay(boxCollider2d.bounds.center - new Vector3(boxCollider2d.bounds.extents.x, 0), Vector2.down * (boxCollider2d.bounds.extents.y + extraHeightText), rayColor);
    Debug.DrawRay(boxCollider2d.bounds.center - new Vector3(boxCollider2d.bounds.extents.x, boxCollider2d.bounds.extents.y + extraHeightText), Vector2.right * (boxCollider2d.bounds.extents.x * 2f), rayColor);
    Debug.Log(raycastHit.collider);

    • @sofiabombelli728
      @sofiabombelli728 10 หลายเดือนก่อน +1

      thank you so much!!!!!!!!!!!!!!

  • @paleSquash
    @paleSquash ปีที่แล้ว +11

    For anyone struggling at the 5:50 mark on getting the debug raycast to show up: Make sure IsGrounded() is called before checking for the jump key. C# implements something called "shortcutting" which means that if you have 2 AND conditions in an if statement and it fails the first one, it won't even check for the second one. If the IsGrounded() is in the second one, then it won't draw the raycast. Just something to help :)

  • @Baal3033
    @Baal3033 5 ปีที่แล้ว +20

    Awesome tutorial. I mainly watched it to get a better grasp of Raycasts and checking for colliders and now I also know about LayerMasks, BoxCasts and Collider.bounds. Thanks :)

  • @dhankumari7290
    @dhankumari7290 4 ปีที่แล้ว +38

    Your teaching style is utterly different than other people that i have seen.
    you are different and fully confident in your craft. hats off your confident and experience that i learn so much important things
    May you and your family live long !!!

  • @NuNaKri
    @NuNaKri 4 ปีที่แล้ว +18

    Perfect! Now I can decide which method to choose and why :D Thanks a lot :D

  • @heroofthyme4237
    @heroofthyme4237 5 ปีที่แล้ว +16

    You are a legend and deserve so much more love for sharing all your knowledge

  • @androxz7
    @androxz7 5 ปีที่แล้ว +18

    Nice video, mostly I work on mobile so I consider the last method to be really expensive since you are calling a getcomponent in update and also I notice that OnTriggerStay is also expensive on mobiles why I highly avoid it, so I try to do those kind of booleans in OnTriggerEnter and make them false in OnTriggerExit, so I recomend using the first and second if you are working on mobile, also call it every 3 or 5 frames to increase performance and not every update.

    • @1lsgaming27
      @1lsgaming27 5 ปีที่แล้ว +2

      Nice tip

    • @fiQmeister
      @fiQmeister 4 ปีที่แล้ว +1

      How do you call it every 3-5 frames?

    • @androxz7
      @androxz7 4 ปีที่แล้ว +4

      @@fiQmeister usually an if(Time.framecount % "desired amount of frames" == 0)

  • @Maukustus
    @Maukustus 3 ปีที่แล้ว +6

    thank you monke.

  • @hermannlagrange803
    @hermannlagrange803 3 ปีที่แล้ว +11

    4:17 Just some free advice, if you're going to show how to change the colour of the ray cast, don't just make the variable and assume the viewer knows what to do with it. Show the whole code, don't cut parts of it off.
    The code is supposed to be: Debug.DrawRay(boxCollider2d.bounds.center, Vector2.down * (boxCollider2d.bounds.extents.y + extraHeight), rayColor);
    but you never show the part where you add the 'rayColor' to the line, you assume we know to do that.

  • @zacharyferioli1214
    @zacharyferioli1214 2 ปีที่แล้ว +1

    Thank you! I have been stuck on this. I have been trying to use a box collider as a trigger and tell the script to check for ground that way, which didn't seem to work how I wanted it to for the game that I am making. I clicked on your video and got it done in a matter of five minutes. Also, thank you for explaining what everything did instead of just telling us to copy down some code and just trust that it works. Definitely subscribing

  • @danielsantana5126
    @danielsantana5126 4 ปีที่แล้ว +3

    I loved your channel because It is easy to understand your english :)

  • @manuelfont4494
    @manuelfont4494 4 ปีที่แล้ว +4

    Some help:
    Note that if you check if you are pressing the space bar before checking if you are in the ground the ray will only be visible when you jump.

  • @sirmicah
    @sirmicah 4 ปีที่แล้ว +7

    Hey thanks for this man its really helpful. I'm taking an online Unity course and the instructor had us use raycasting and that didn't work at all for the game and the recast was off center and it was just a mess. I needed a different way of doing it.

  • @cristiano4826
    @cristiano4826 5 ปีที่แล้ว +4

    Thanks for the explanation 👍

  • @xnaturell9189
    @xnaturell9189 4 ปีที่แล้ว +6

    It doesnt let me write bounds after boxCollider2d (1st method) why?
    it says that object doesn't contain a definition for bounds

    • @dudeguyman2618
      @dudeguyman2618 3 ปีที่แล้ว

      maybe your getting the component incorrectly, or you're getting the wrong component

    • @o0l1e3q9
      @o0l1e3q9 3 ปีที่แล้ว

      you should declare it and GetComponent it in the Awake function

  • @unitynocode
    @unitynocode 2 ปีที่แล้ว

    You are the best. I stuck in this issue many months ^ ^ now it's done. Thank you so much !

  • @akshaymanthekar1032
    @akshaymanthekar1032 ปีที่แล้ว

    Hey Hugo, you are a huge support for the beginner game devs like me. Keep up the good work man! I really appreciate it :)

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  ปีที่แล้ว +1

      Thanks for the kind words! I'm glad you found the videos helpful!

  • @randomaccount594
    @randomaccount594 4 หลายเดือนก่อน

    instead of setting all ground objects to a layer you can just set your player to the "Ignore Raycast" layer. also, for extra height, 0.01 may not work for everyone depending on your hitbox and/or collision detection method

  • @jamado9067
    @jamado9067 3 ปีที่แล้ว +8

    9:36 Recommended Method

    • @allwoundup3574
      @allwoundup3574 3 ปีที่แล้ว

      by whom?

    • @jamado9067
      @jamado9067 3 ปีที่แล้ว

      @@allwoundup3574 what do you mean?

    • @allwoundup3574
      @allwoundup3574 3 ปีที่แล้ว

      @@jamado9067 By whom is that method recommended?

    • @jamado9067
      @jamado9067 3 ปีที่แล้ว +2

      @@allwoundup3574 code monkey says it is the superior method (12:05)

  • @humadi2001
    @humadi2001 3 ปีที่แล้ว +1

    always find you when I'm looking for The Best Code, Thank You🌹.

  • @marvelmovieshd4436
    @marvelmovieshd4436 2 ปีที่แล้ว +1

    Thank you soooo much man, your tutorials are very helpful

  • @masteratt
    @masteratt 5 ปีที่แล้ว +12

    Nice tips, thank you.
    Just curious if there's a reason you haven't updated your Unity to 2019?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  5 ปีที่แล้ว +10

      Heh funny about that. This particular video was actually recorded all the way back in April but somehow I completely forgot to upload and last week when I was preparing to get back to regular videos I found it. There's still one more video from that time that I found as well.
      In the Radar Chart video which was recorded and published on Sunday you can see I'm using Unity 2019.

  • @yerasisaiprasadreddy
    @yerasisaiprasadreddy 5 ปีที่แล้ว +2

    Even in OnTriggerExit2D we should check if the collider that is exited is the ground collider

  • @M1lkshaking
    @M1lkshaking ปีที่แล้ว +1

    For those struggling to implement the first method in 3d at 2:08: if you are using a box collider like me, you can put (GetComponent().center) to get the center

    • @galerez2250
      @galerez2250 ปีที่แล้ว +3

      You shouldn't call GetComponent() in Update/FixedUpdate etc.. you should cash the collider, use BoxCollider boxCol = getComponent() at awake or use SerializeField

  • @miaoumixed4268
    @miaoumixed4268 2 ปีที่แล้ว +8

    Hi, thanks for this video.
    I used to create two empty GameObject(s) under the "Player" and an "OverlapArea". It works very fine as it creates an easy setting rectangle box where I want.
    But, I like your method as there is no added object to the "Player" and only use a simple calculation called when needed.
    Thank much.

  • @duyvo1258
    @duyvo1258 ปีที่แล้ว +1

    Another method is to have another game object like the third, but instead of having entire new script, we can use a reference to that object in the main script and write a function which will draw a OverlapCircleAll and it's actually pretty similar to BoxCast!!

  • @ChuckSploder
    @ChuckSploder 2 ปีที่แล้ว +1

    In the newer versions of unity you can just set the layer of your player as 'Ignore Raycast' as the fix for that bug.

  • @thebrunorobert
    @thebrunorobert 4 ปีที่แล้ว +2

    Simple and concise, thank you!

  • @markedforstrike
    @markedforstrike 5 ปีที่แล้ว +1

    Dat thing is one that always needed and always forgotten by me. Thanks!:)

  • @lucasteles42
    @lucasteles42 5 ปีที่แล้ว +6

    O dont get why BoxCast is the best option over a collider. What is the advances and disadvantages of those alternatives?
    Thanks, great video 😁

    • @ShenDoodles
      @ShenDoodles 4 ปีที่แล้ว

      The boxcast checks the entire ground underneath the player. As demonstrated in the video, only this will allow jumping on slopes.

    • @Semaj0z
      @Semaj0z 4 ปีที่แล้ว +1

      @@ShenDoodles so does the box collider

    • @AsciiKing
      @AsciiKing 4 ปีที่แล้ว +4

      @@Semaj0z I didn't hear him mention it in the video, but I think the reason the box collider is inferior is because it will check for collisions around the entire box. So, if a player jumps up and bumps their head on the platform above them, they would then be allowed to jump up again because the collider would be touching a platform.

    • @matthewtimmermans2610
      @matthewtimmermans2610 3 ปีที่แล้ว

      @@ShenDoodles it's not the only way :P

  • @Real_MrDk
    @Real_MrDk 5 ปีที่แล้ว +1

    Lots of love from India BRO keep it up

  • @diliupg
    @diliupg 5 ปีที่แล้ว +1

    Concise. Great explanation. Good tutorial. Thank You.

  • @bazdonaxdumaul1493
    @bazdonaxdumaul1493 ปีที่แล้ว

    Solved my problem, TYVM.

  • @ampeyro
    @ampeyro 4 ปีที่แล้ว +6

    But...
    Isn't there a way to get it straight from the box collider?
    After all, some part of the program has to already know it for the character to not fall through the ground.

    • @AIAdev
      @AIAdev 4 ปีที่แล้ว

      You could put a script on your player that uses OnCollisionEnter() and OnCollisionExit() methods to set the isGrounded bool. Then within those methods check for a specific tag like "ground. For example within OnCollisionEnter you could do a... if(other.CompareTag("Ground")){ isGrounded = true;}

    • @matthewtimmermans2610
      @matthewtimmermans2610 3 ปีที่แล้ว

      there is collider.IsTouching(otherCollider);

  • @ashkankiafard3080
    @ashkankiafard3080 4 ปีที่แล้ว +5

    Hey,thanks for the tutorial, but I have a problem with the third method :(
    My isgrounded_check doesn't get false after jumping.I'm pretty sure I did everything right and I can't found the problem.
    I also tried the 2 first methods and the problem was my character was unable to jump.
    I would appreciate it if someone helped me out!
    p.s:The size of my box colliders are right

  • @saywhat1688
    @saywhat1688 3 ปีที่แล้ว

    Thanks a lot . This is the only method that worked for me. I had tried 4 different methods before and none of them worked.

  • @drunkengaming4782
    @drunkengaming4782 2 ปีที่แล้ว

    Saved my project thank you so much

  • @ritvik4835
    @ritvik4835 3 ปีที่แล้ว +2

    saved me thanks !!!

  • @babymusou9208
    @babymusou9208 3 ปีที่แล้ว +1

    damn he really called me out on the last one 😂

  • @hichamlaqrafi2885
    @hichamlaqrafi2885 5 ปีที่แล้ว +1

    Wow ! somehing great today
    Good explanation Perfect work

  • @jiper94
    @jiper94 3 ปีที่แล้ว

    Thanks man, you're always such a huge help

  • @jahoopyjaheepu497
    @jahoopyjaheepu497 5 ปีที่แล้ว

    Good video explaining the basics. Building out a full controller using raycasts/boxcasts is a lot of work.

  • @vihaannagarkar1870
    @vihaannagarkar1870 4 ปีที่แล้ว

    Loved this video, it helped me a lot. Thank you very much!

  • @matheusreidopedaco
    @matheusreidopedaco 3 ปีที่แล้ว +1

    For some reason my RayCast is pointing to another direction?

  • @gamgnamstile
    @gamgnamstile ปีที่แล้ว

    Thanks, very helpful!

  • @jesudunniakinyemi2979
    @jesudunniakinyemi2979 2 ปีที่แล้ว

    Thanks a lot
    this was really helpful

  • @Jb-vv1ur
    @Jb-vv1ur ปีที่แล้ว +1

    good video but why is the boxcast superior to the second hitbox when they both function the same exact way?

  • @djdatore
    @djdatore 3 ปีที่แล้ว +2

    This helped a lot. What do you do in a case where you bump into a floating platform and touches platforms from the side?

  • @Rovsau
    @Rovsau 3 ปีที่แล้ว

    Talk about superior method - I just found the superior channel ♥

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  3 ปีที่แล้ว +1

      I'm glad you like what you see!

    • @Rovsau
      @Rovsau 3 ปีที่แล้ว

      @@CodeMonkeyUnity This video was great for grasping the concept and understanding the code. I watched it several times. Both at 0.25 and 1.25 playback speed xD
      After some tinkering I figured out a way to make a single Raycast on the bottom side of the character work as a ground check (horizontal). Raycasts are infinitely thin and normally can't register the collider from which they originated or started inside, but for some reason it works with Physics2D, and I'm using the same approach for Wall Check Left/Right.
      I will probably end up with a Boxcast due to issues with slopes, unless I introduce another ray, but I'm testing it for now since I was able to write it myself.
      Do you have any opinions on Ray/Boxcast vs programming Collision methods?
      Edit: Just realized my Raycasts only worked because I wasn't using a composite collider on the Tilemap. They were always long enough to find another collider.

  • @Ivanho
    @Ivanho 4 ปีที่แล้ว

    you saved my life, thank you very much

  • @djeka415
    @djeka415 2 ปีที่แล้ว

    Thank you!

  • @TinyCastleGames
    @TinyCastleGames 2 ปีที่แล้ว

    Great tutorial, Thanks

  • @user-dy5hj7vq9l
    @user-dy5hj7vq9l 4 ปีที่แล้ว +1

    What do you think about use to Physics2D.OverlapCircle()?

  • @felixbaum2113
    @felixbaum2113 2 ปีที่แล้ว

    Everyone here who experiences a strange bug where the jump sometimes works and sometimes doesn't!
    This bug is caused when you run the check if the player is pressing the jump button inside the FixedUpdate() method!
    The checking and the main logic for the jumping has to be in the normal Update() method, the rest of the movement can stay in FixedUpdate().
    The reason for this is, that FixedUpdate() (as the name suggests) runs on fixed FPS (normally 50) because thats the framerate of the unity physics loop, so when the game is running on a much higher framerate your button presses won't be recognised sometimes!

  • @archieaullikan6757
    @archieaullikan6757 2 ปีที่แล้ว

    Taught well but could've summarized previous videos as I got stuck with trying to figure out why the code wasnt working only to realise I had missed your get objects in the first few lines of code which cost me a lot of time and energy

  • @niuage
    @niuage 4 ปีที่แล้ว +1

    @Code Monkey I don't feel like you explain why 1 method is superior to the other. I feel like the last method is actually more re-usable, as you can just add the "grounded" script to other objects, and having many box colliders is maybe a bit more work, but could be useful in some cases, like it you wanted to be able to jump from walls etc. Why do you think the boxcast is better? I picked up Unity a couple weeks ago, so I'm a total beginner tho. I'm having so much fun learning it :D

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  4 ปีที่แล้ว

      The first method only works with a single point, so if you want your character to have width you need to use BoxCast.
      The last method uses an extra unnecessary GameObject which has a performance cost and adds needless complexity into your game. If you're already handling character movement in one script it makes much more sense to handle grounding in there rather than access a different script in a different game object.

    • @matthewtimmermans2610
      @matthewtimmermans2610 3 ปีที่แล้ว +2

      one is not superior, they are all situational.

    • @Luca-nq4gy
      @Luca-nq4gy 3 ปีที่แล้ว

      @@matthewtimmermans2610 So it's ok if i use collider for detect ground?
      i still use ray for other function that collider not so efficient, but for ground i feel like add collider will make everything easier but people said just use ray so i'm confused.

    • @Chubzdoomer
      @Chubzdoomer 3 ปีที่แล้ว

      @@Luca-nq4gy There's nothing wrong with using a trigger collider. Just use what works best for you.

  • @skippynik6003
    @skippynik6003 3 ปีที่แล้ว

    thanks man you are awesome!!!!

  • @INFPownage
    @INFPownage 4 ปีที่แล้ว +1

    how do I make sure my jump animation is active when the groundcheck is not interacting with the platform layer? I am going with the 3rd option.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  4 ปีที่แล้ว +1

      Add a boolean parameter to your Animator and set it to the same as your isGrounded bool.

  • @spedotgame4916
    @spedotgame4916 4 ปีที่แล้ว +1

    Yeah, Thanks so much

  • @stevancosovic4706
    @stevancosovic4706 3 ปีที่แล้ว

    Oh, thank you man!!!

  • @dynamicvoltage9765
    @dynamicvoltage9765 3 ปีที่แล้ว

    The third option is dangerous because it will allow you to jump when you're pressed against a wall, even if you're not grounded. You have to make the ground box smaller along the X axis, but when you do that, it causes other issues.

  • @TheOfficiaITristam
    @TheOfficiaITristam 2 ปีที่แล้ว +1

    Uh... the raycast Color isn't working, just gives me a white color.
    The groundcheck worked though so it's fine, thanks!

  • @yalieyal4362
    @yalieyal4362 ปีที่แล้ว

    Thanks!

  • @casachezdoom2588
    @casachezdoom2588 3 ปีที่แล้ว +2

    For some reason. at 7:34 when I add the platformLayerMask I can't jump anymore. Also debug.log tells me that raycastHit.collider is null while I am standing and running on a platform. Not sure where I went wrong...

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  3 ปีที่แล้ว +1

      Is the platform game object with the collider on the same layer as the one you chose in the layermask?

    • @casachezdoom2588
      @casachezdoom2588 3 ปีที่แล้ว +1

      @@CodeMonkeyUnity Yeah I just double checked. Does the layer the player is on make any difference? (it's on the default layer)

    • @casachezdoom2588
      @casachezdoom2588 3 ปีที่แล้ว +1

      @@CodeMonkeyUnity Seems to work with the second method; with the BoxCast instead of the RayCast. There must have been a typo or an incorrect value somewhere.

  • @at930pmgames
    @at930pmgames 3 ปีที่แล้ว

    really helpful thanks

  • @rahzekarma
    @rahzekarma 4 ปีที่แล้ว +2

    Haha, I forgot to set my player to ignore raycast and have just been staring at my screen for a good 10 minutes.

    • @iamjustaduck7592
      @iamjustaduck7592 4 ปีที่แล้ว

      What do you mean by "ignore raycast"?

    • @rahzekarma
      @rahzekarma 4 ปีที่แล้ว

      @@iamjustaduck7592 the player gameObject has a setting somewhere, manually, to ignore raycast so that it doesn't trigger its own raycast.

    • @iamjustaduck7592
      @iamjustaduck7592 4 ปีที่แล้ว

      Rahzek Karma oh okay, i had a doubt ^^’

  • @PumaFau
    @PumaFau 4 ปีที่แล้ว +1

    How do you do this when your ground is just an edge collider on a tilemap?

  • @sebastiangajardo9622
    @sebastiangajardo9622 4 ปีที่แล้ว

    i believe there is easier ways to do the 3rd one but maybe the way i use is not the best, still good video, i learn more than what i was looking for.

  • @dinozaurwrs
    @dinozaurwrs 3 ปีที่แล้ว +1

    thanks for unlocking my mind bro

  • @BmoreGaming
    @BmoreGaming 9 หลายเดือนก่อน

    I know this might be a little unrelated to the video, but how do you check the ground material to play different sounds. For example, if a player is running on grass and then transitions to a stone road, what is the best way to check for this to change the audio when they are on different surfaces? I've read some people use raycasts, but that sounds like it could be expensive especially if there are 100s or even 1000s of players all using raycasts to check for audio. Any suggestions?

  • @Mimi_py
    @Mimi_py 3 ปีที่แล้ว

    thank you

  • @Atezian
    @Atezian 3 ปีที่แล้ว +2

    you didn't actually explain how the last one is inferior to the second one.

    • @thyr00ji48
      @thyr00ji48 3 ปีที่แล้ว

      it isn't flexible at all,
      1. it requires that you put every ground object in a specific layer
      2. needs the player or the ground to have a rigidbody
      3. is a monobehaviour that means another component, whereas it could be a simple method/property

  • @danmolo
    @danmolo 2 ปีที่แล้ว

    Thanks a lot!!

  • @NST-games
    @NST-games 4 ปีที่แล้ว +1

    But what if you also have an effector platforms? My character becomes grounded on a moment he jumps up through such a platform from a bottom.

    • @matthewtimmermans2610
      @matthewtimmermans2610 3 ปีที่แล้ว +1

      check your player's y velocity, if you are moving up you can disable the collider or not do the collision and when you are still or moving down you enable it/do the check.

  • @TheLeontheking
    @TheLeontheking 5 ปีที่แล้ว +3

    Why not just use the box collider that is already attached to the player?

    • @yugioh-furkan-4508
      @yugioh-furkan-4508 4 ปีที่แล้ว +1

      Because it could collide with walls, and ceilings too. You just want to check if the character is colliding with the ground.

  • @guille_sanchez
    @guille_sanchez 2 ปีที่แล้ว +1

    @Code Monkey There's a problem where sometimes (2-3% of the time) the BoxCast will detect a wall as ground (on the sides of theBoxCast instead of on the bottom). @Ignacio Arenas Guerra's suggestion of changing the code to this:
    "RaycastHit2D raycastHit = Physics2D.BoxCast(body.bounds.center, body.bounds.size - new Vector3(0.1f, 0f, 0f), 0f, Vector2.down, extraHeightTest, platformLayerMask); "
    doesn't help.
    @ReStudios' suggestion on changing the rigidbody2D to continuous (instead of discrete) doesn't do it either.
    I've been testing this for hours: just wall jumping (there's no ground in the testing setup), so that the only collisions happen on the sides of the BoxCast, and still there are sometimes (again, a small percentage but cannot be disregarded) where the walljump doesn't trigger because the BoxCast detected ground on the sides and therefore the jump was triggered instead.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  2 ปีที่แล้ว

      Just make the BoxCast a tiny bit smaller than the physical collider

    • @guille_sanchez
      @guille_sanchez 2 ปีที่แล้ว

      @@CodeMonkeyUnity thanks for replying 🙏🏻
      Actually, there's a second issue with a BoxCast of the exact same size as the character's BoxCollider2D, where the character doesn't detect the ground if he's standing at the very edge of a platform (so the fall animation triggers and isGrounded boolean becomes false) but the character remains on top of the platform. If I make the BoxCast a tiny smaller, I will worsen this issue, right?

    • @guille_sanchez
      @guille_sanchez 2 ปีที่แล้ว

      I created a post explaining this issue on the Unity Forums 12 days ago. Maybe it's something with the RB2D itself, I'm not sure. In the thread, there are pictures of the RigidBody2D parameters, and also pictures of the character falling with its boxcollider and the platform's boxcollider. In case anyone would like to have a look, the post is "BoxCollider2D not falling off a platform", Jul 29.

  • @365daysofhowto7
    @365daysofhowto7 4 ปีที่แล้ว

    3rd one is awesome
    But understanding raycast may help in developing shooter games

  • @junaidgamedev
    @junaidgamedev 4 ปีที่แล้ว +1

    How about Physics2D.IsTouching

  • @ginodekovic2733
    @ginodekovic2733 4 ปีที่แล้ว +1

    Is there a way to make this with capsule cast or something similar for 3D

  • @ThienNguyen-mo9xv
    @ThienNguyen-mo9xv 4 ปีที่แล้ว

    Cool instruction!!!

  • @vutranminh1886
    @vutranminh1886 ปีที่แล้ว

    I had used isGround in Update and Physics2D.BoxCast is jerked when i use transform.position for movement of gameobject. Help me, pls !!!

  • @ruy_u
    @ruy_u ปีที่แล้ว

    I've been running into a bug, if the player is near an edge where the middle box collider is not on the ground but they're not falling they cant jump. Does anyone know how to solve it?

  • @mohamedessam-6228
    @mohamedessam-6228 5 ปีที่แล้ว +2

    love you :>

  • @SociopathDev
    @SociopathDev 5 ปีที่แล้ว +2

    What about when you have a platform in above you and you jump over it? I'm struggling with that part since it says i'm grounded before my character is fully stopped on the platform. I mean using platform effector

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  5 ปีที่แล้ว +2

      Do you mean your character is ground when it's touching the sides of the platform? If so you can probably solve it by making the BoxCast a tiny bit smaller on the width.

    • @SociopathDev
      @SociopathDev 5 ปีที่แล้ว +1

      @@CodeMonkeyUnity I mean imagine there is a thick plataform on top of you and it has an platform effector 2d, so when you are jumping and your box collides with the platform/layer it will say you are grounded in the middle of the process to get on top when you are still jumping

    • @AsciiKing
      @AsciiKing 4 ปีที่แล้ว +1

      @@SociopathDev Are you saying you want to be able to jump through a platform above you and then be able to land on it?

  • @Ren-nf4pz
    @Ren-nf4pz 3 ปีที่แล้ว

    I am sorry but isn't the two boxCollider methods just the same as the boxcastmethod? I really don't see the difference?

  • @CC_-pn2og
    @CC_-pn2og 3 ปีที่แล้ว

    @CodeMonkey why does it trail behind the player instead of being on top if the player? sence the box colider is not trailing behind the player and is on top of it... id understand why it is not, and i dont know how i would add the velocity of the player on to it causes it to not be able to jump if i am moving towards a ledge because it is behind me when moving. i might of just missed this part in the tutorial or messed up somewhere

  • @stroidzz873
    @stroidzz873 4 หลายเดือนก่อน

    3:15 I just realized he made a funny typo: he typed extraHeightText instead of extraHeightTest.

  • @ordepsmusic
    @ordepsmusic 4 ปีที่แล้ว

    Perfect class

  • @shprytnylucas4614
    @shprytnylucas4614 4 ปีที่แล้ว +2

    RaycastHit2D raycastHit = Physics2D.Raycast(boxCollider2d.bounds.center, Vector2.down, boxCollider2d.bounds.extents.y);
    Assets\Movement.cs(38,96): error CS0103: The name 'boxCollider2d' does not exist in the current context

    • @rahzekarma
      @rahzekarma 4 ปีที่แล้ว +1

      I'm having the same problem, have you solved it yet by any chance?

    • @rahzekarma
      @rahzekarma 4 ปีที่แล้ว +2

      Actually I figured it out. At 5:04 you can see that he has boxCollider2d instantiated at the top of his code, which i did not.

    • @energy9802
      @energy9802 4 ปีที่แล้ว +1

      BoxCollider2d boxCollider2D = GetComponent();

  • @elderGS00
    @elderGS00 3 ปีที่แล้ว

    i used the third method and changed this line
    isGrounded = other != null && (((1

  • @siddharth7441
    @siddharth7441 5 ปีที่แล้ว +1

    great video

  • @akael8350
    @akael8350 10 หลายเดือนก่อน

    4th method : add 2 raycasts in x axis from the bottom of the player with new Vector3(boxCollider2d.bounds.extends.x,0,0)

  • @anjobihis2052
    @anjobihis2052 4 ปีที่แล้ว +1

    You can also do this for the debug colors, bro. :)
    Color rayColor = collider ? Color.red : Color.green;
    It's the same.

    • @socialtwister207
      @socialtwister207 3 ปีที่แล้ว

      He wants to keep it simple for a tutorial. While that is pretty simple it's also using some a technique that can GET pretty in depth if that makes sense, it's not the easiest thing to wrap your head around when you start out.

    • @anjobihis2052
      @anjobihis2052 3 ปีที่แล้ว

      Yeah, makes sense. 😁

  • @youtoobar7139
    @youtoobar7139 3 ปีที่แล้ว

    it jumps if the mask layer = everything but if I specify a layer put it on my colliders and select that layer it just doesn't move
    if I change the character's layer mask it does start to jump but returns the same problem at the start

  • @xxyxxyyyx
    @xxyxxyyyx 3 ปีที่แล้ว

    One question to the box cast, can I detect on what site the boxray collided with something or just that it collided at all?

  • @superdahoho
    @superdahoho ปีที่แล้ว

    wait, so why is the boxcast method superior to the last (beginner) method you described?
    it passes both the slope and edge case.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  ปีที่แล้ว

      It does not require an extra Game Object with an extra collider. Personally I find it much better to handle all that logic through code, and if you have many NPCs/Enemies then that extra game object on all of them can be a source of performance issues.

  • @matthewtimmermans2610
    @matthewtimmermans2610 3 ปีที่แล้ว +1

    I was going to say OverlapBox would be more efficient, but someone beat me to it, but I have 2 more solutions not in the video:
    1 - private void OnCollisionEnter2D(Collision2D collision)
    {
    isGrounded = true;
    }
    private void OnCollisionExit2D(Collision2D collision)
    {
    isGrounded = false;
    }
    2 - isGround = footCollider.IsTouching(groundCollider);

  • @devzozo
    @devzozo 2 ปีที่แล้ว

    After doing many single raycast checks for my 3d controllers and it working perfectly, I ran into a really weird bug with double jumping: my jumps were being counted wrong, when I jumped once it was 0, and when I jumped in the air it incremented like it should. It turns out that it was immediately checking the next frame that I was still grounded, even though I should have not been. Moving the ground check to fixed or late update didn’t help at all, and it was framerate based, meaning that breakpoints would actually stop the bug from happening. I eventually tried a SphereCast instead of a raycast and that worked perfectly. Anyway, its worth making a video for 3d ground checks, because there are some weird quirks that can happen. The controller in question is a rolling sphere-style car controller

    • @raswaking8172
      @raswaking8172 ปีที่แล้ว

      Yeah I'm having a similar issue. I don't see how using a spherecast instead of a boxcast would help? But Im glad it worked for you. I think I will try using overlapbox

    • @devzozo
      @devzozo ปีที่แล้ว

      @@raswaking8172 Frankly I don't know why it worked either, maybe since the sphere only had one spot on it that was 'lowest" to the ground?

  • @huseyinakkoc1062
    @huseyinakkoc1062 ปีที่แล้ว

    why castbox is better then second collider ?