3 ways to do a Ground Check in Unity

Поділитися
Вставка
  • Опубліковано 22 лис 2024

КОМЕНТАРІ • 427

  • @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);

  • @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 :)

  • @ignacioarenasguerra9696
    @ignacioarenasguerra9696 4 роки тому +114

    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.

    • @김지훈-g2d2t
      @김지훈-g2d2t 3 роки тому

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

  • @dhankumari7290
    @dhankumari7290 5 років тому +37

    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 !!!

  • @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 :)

  • @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

  • @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

  • @randomaccount594
    @randomaccount594 7 місяців тому

    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

  • @Maukustus
    @Maukustus 3 роки тому +6

    thank you monke.

  • @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

  • @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.

  • @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!

  • @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?

  • @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!

  • @unitynocode
    @unitynocode 2 роки тому

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

  • @drunkengaming4782
    @drunkengaming4782 2 роки тому

    Saved my project thank you so much

  • @danielsantana5126
    @danielsantana5126 4 роки тому +3

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

  • @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.

  • @bazdonaxdumaul1493
    @bazdonaxdumaul1493 2 роки тому

    Solved my problem, TYVM.

  • @marvelmovieshd4436
    @marvelmovieshd4436 2 роки тому +1

    Thank you soooo much man, your tutorials are very helpful

  • @cristiano4826
    @cristiano4826 5 років тому +4

    Thanks for the explanation 👍

  • @ChuckSploder
    @ChuckSploder 3 роки тому +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.

  • @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.

  • @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.

    • @BeerfootBandit
      @BeerfootBandit 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)

  • @Real_MrDk
    @Real_MrDk 5 років тому +1

    Lots of love from India BRO keep it up

  • @miaoumixed4268
    @miaoumixed4268 3 роки тому +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.

  • @yerasisaiprasadreddy
    @yerasisaiprasadreddy 5 років тому +2

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

  • @gamgnamstile
    @gamgnamstile Рік тому

    Thanks, very helpful!

  • @humadi2001
    @humadi2001 4 роки тому +1

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

  • @ritvik4835
    @ritvik4835 3 роки тому +2

    saved me thanks !!!

  • @duyvo1258
    @duyvo1258 2 роки тому +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!!

  • @archieaullikan6757
    @archieaullikan6757 3 роки тому

    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

  • @akael8350
    @akael8350 Рік тому

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

  • @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.

  • @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 4 роки тому

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

  • @jahoopyjaheepu497
    @jahoopyjaheepu497 5 років тому

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

  • @thebrunorobert
    @thebrunorobert 5 років тому +2

    Simple and concise, thank you!

  • @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.

  • @TinyCastleGames
    @TinyCastleGames 2 роки тому

    Great tutorial, Thanks

  • @djeka415
    @djeka415 2 роки тому

    Thank you!

  • @diliupg
    @diliupg 5 років тому +1

    Concise. Great explanation. Good tutorial. Thank You.

  • @niuage
    @niuage 5 років тому +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  5 років тому

      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 4 роки тому +2

      one is not superior, they are all situational.

    • @Luca-nq4gy
      @Luca-nq4gy 4 роки тому

      @@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.

  • @stevancosovic4706
    @stevancosovic4706 3 роки тому

    Oh, thank you man!!!

  • @neozoid7009
    @neozoid7009 Рік тому

    Hey CM awesome video, But we can also use the player collider for the ground check then why to use a raycast ?

  • @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.

  • @jesudunniakinyemi2979
    @jesudunniakinyemi2979 2 роки тому

    Thanks a lot
    this was really helpful

  • @페오-i6s
    @페오-i6s 4 роки тому +1

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

  • @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.

  • @hichamlaqrafi2885
    @hichamlaqrafi2885 5 років тому +1

    Wow ! somehing great today
    Good explanation Perfect work

  • @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.

  • @markedforstrike
    @markedforstrike 5 років тому +1

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

  • @TandemEncounter
    @TandemEncounter 4 роки тому

    For argument's sake, what would be wrong with casting a horizontal ray from the bottom left of the player collider with the length of the width of the player box collider and checking using this ray? One issue that I had was it was returning true when pressed up against a wall, so I made the ray slightly smaller than the width of the player which seemed to work. I had some problems further down the road which made me reconsider how I was doing ground detection which lead me to this great video.

    • @THECOLLECTOROFSOULS
      @THECOLLECTOROFSOULS 4 роки тому

      I have this exact same issue using boxcast, still looking for a solution.

    • @TandemEncounter
      @TandemEncounter 4 роки тому +1

      @@THECOLLECTOROFSOULS I actually got it working 100% (I hope) with using BoxCast! You might just want to make the box a tiny bit smaller if it's getting set to true when the player is pressed against a wall.

  • @jamado9067
    @jamado9067 4 роки тому +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)

  • @yalieyal4362
    @yalieyal4362 Рік тому

    Thanks!

  • @365daysofhowto7
    @365daysofhowto7 4 роки тому

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

  • @jiper94
    @jiper94 3 роки тому

    Thanks man, you're always such a huge help

  • @dynamicvoltage9765
    @dynamicvoltage9765 4 роки тому

    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.

  • @matthewtimmermans2610
    @matthewtimmermans2610 4 роки тому +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);

  • @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?

  • @danmolo
    @danmolo 3 роки тому

    Thanks a lot!!

  • @skippynik6003
    @skippynik6003 4 роки тому

    thanks man you are awesome!!!!

  • @at930pmgames
    @at930pmgames 4 роки тому

    really helpful thanks

  • @Diablokiller999
    @Diablokiller999 Рік тому

    What about computational effort for the different methods?
    Is a Boxcast more demanding than a simple collider for ground detection?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Рік тому +1

      Both are extremely fast operations, unlikely to be an issue unless you have thousands of units. I don't know specifically which one of those is faster but the benefit of the BoxCast method is you control how many times you call it, so you could just run that at most 10 times per second instead of every update.

    • @Diablokiller999
      @Diablokiller999 Рік тому

      @@CodeMonkeyUnity Maybe you can do a profiler Tutorial about this? ;)

  • @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

  • @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 4 роки тому

      there is collider.IsTouching(otherCollider);

  • @juanpabon4254
    @juanpabon4254 3 роки тому

    thank you

  • @matheusreidopedaco
    @matheusreidopedaco 3 роки тому +1

    For some reason my RayCast is pointing to another direction?

  • @vihaannagarkar1870
    @vihaannagarkar1870 4 роки тому

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

  • @siddharth7441
    @siddharth7441 5 років тому +1

    great video

  • @BmoreGaming
    @BmoreGaming Рік тому

    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?

  • @spedotgame4916
    @spedotgame4916 4 роки тому +1

    Yeah, Thanks so much

  • @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!

  • @uyscuti5571
    @uyscuti5571 5 років тому +1

    nice video!!!! but is it ok to use tages insted of layermasks?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  5 років тому +2

      You can but don't use tags. They are string based which makes for some very nasty code since everything can easily break by just mistyping a single character.

    • @uyscuti5571
      @uyscuti5571 5 років тому +1

      @@CodeMonkeyUnity i agree thank u so mush

  • @_qwe_fk_1700
    @_qwe_fk_1700 4 роки тому +1

    Thank you, such a good video, but i have 1 problem, I cant see my arrow from the Raycast?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  4 роки тому +1

      Make sure you have Gizmos enabled in your game view

    • @_qwe_fk_1700
      @_qwe_fk_1700 4 роки тому

      @@CodeMonkeyUnity Still doesnt work like it does in your video, but i added a duration to the Raycast and it shows when I press space, which is good enough for me:)

  • @frontend_ko
    @frontend_ko 2 місяці тому

    thanks

  • @ThienNguyen-mo9xv
    @ThienNguyen-mo9xv 5 років тому

    Cool instruction!!!

  • @brianboddum6872
    @brianboddum6872 11 місяців тому

    Hi. Nice video. Is there a way to make the boxcast a little smaller in with, since i use capsuleCollider2D.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  11 місяців тому

      Sure, you can define whatever size you want

    • @brianboddum6872
      @brianboddum6872 11 місяців тому

      Thanks for your answer. Im fairly new to programming and i havent been able to search down a solution. Maybe i just go back to boxcollider2D and drop the slopes :(

  • @Ivanho
    @Ivanho 4 роки тому

    you saved my life, thank you very much

  • @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.

  • @dinozaurwrs
    @dinozaurwrs 3 роки тому +1

    thanks for unlocking my mind bro

  • @snaecooceans8744
    @snaecooceans8744 5 років тому

    9:34 Question and Possible Solution: The Raycast is only projecting Directly Down (180* ) could you not "Sweep" the Raycast from side to side (as you said it casts from Point A to Point B, where Point B changes location, this should be possible as far as I know Raycasting happens per Frame (and lets say we are doing that at 60 fps), so in the space of 3 fps (Point B could change 3 times Left, Center Right, return in the opposite direction, repeat. Let me know if my Question/Solution would be easily "doable". Thanks Code Monkey and Crew

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  5 років тому

      Sure that would be doable but would be inconsistent and needlessly complex compared to just doing a simple BoxCast.

  • @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

  • @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 2 роки тому

      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 2 роки тому

      @@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?

  • @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.

  • @ordepsmusic
    @ordepsmusic 5 років тому

    Perfect class

  • @babymusou9208
    @babymusou9208 3 роки тому +1

    damn he really called me out on the last one 😂

  • @hungleduy3389
    @hungleduy3389 3 роки тому +1

    Hi Code Monkey, Thanks for your video, you teach me so lot to create a game, but i have trouble when my character jump to edge of another ground, then the character detect that it's grounded. So, how to avoid this situation ?
    Sr for my english :)) I really hope to see your answer !

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  3 роки тому +1

      You want the "edge" to be smaller? You can scale the players hitbox to be thinner, if you make it super tiny then it will pretty much just be a single point.

    • @hungleduy3389
      @hungleduy3389 3 роки тому

      @@CodeMonkeyUnity thanks for your answer, actually my problem is that when i jump near the wall (edge of another ground), the character detect that it's grounded, and it execute double jump, it flies like superman =)). So I add more code to check that it's really on the ground.
      The code to execute jump: rig.velocity = new Vector2(0, jumpLevel);
      The code to check that it's really on the ground: if (isGrounded() && rig.velocity.y == 0)
      I don't know whether this is the best way or not. Do you have any advice for me :D ?

  • @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. 😁

  • @superdahoho
    @superdahoho 2 роки тому

    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  2 роки тому

      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.

  • @huseyinakkoc1062
    @huseyinakkoc1062 Рік тому

    why castbox is better then second collider ?

  • @mohamedessam-6228
    @mohamedessam-6228 5 років тому +2

    love you :>

  • @vutranminh1886
    @vutranminh1886 2 роки тому

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

  • @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?

  • @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.

  • @ginodekovic2733
    @ginodekovic2733 4 роки тому +1

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

  • @junaidgamedev
    @junaidgamedev 4 роки тому +1

    How about Physics2D.IsTouching

  • @stroidzz873
    @stroidzz873 7 місяців тому

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

  • @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

  • @Viktoria_Selene
    @Viktoria_Selene 3 роки тому

    for he first method, if the project is in 3d, what should I use, instead of physics 2d?