Wall Slide and Wall Jump Unity 2D

In this video we learn about wall jumps in unity 2D. We will start by making wall slides and then make wall jumps . There are many problems in making wall jumps which I will try my best to make you understand how / why that problem is happeneng. And at the end you will know more about wall jump then any other video . I can assure you that.
You can Download the Tutorial File Here
chronoabi.itch.io/wall-jump-s...
You can Follow this channel at
Instagram : / chronoabi
KZread: bit.ly/2CReUlQ
Twitter : / chronoabi
Discord : / discord
You can also support me on paytron to see the latest videos quicker
Paytron: / chronoabi

Пікірлер: 38

  • @codyphillips4327
    @codyphillips43274 жыл бұрын

    I'm brand new to C#/Unity, and your use of booleans and naming conventions offer an excellent example of workflow organization. It's been very helpful to my learning. After downloading your scene, I noticed that the player jumps even if you press the space bar in midair. Your organization made it pretty easy to find a solution, and I was wondering what you think of it: void Inputs() { XDirectionalInput = Input.GetAxis("Horizontal"); if (Input.GetKeyDown(KeyCode.Space) && (grounded || isWallSliding)) { canJump = true; } By checking if the player is on the ground or on the wall before setting canJump to true, this avoids allowing the player to jump before they've already touched the ground or wall. At first I didn't understand why you were setting a boolean for canJump, but now I realize that this allows you to customize the conditions for jumping in a way that can scale for different player situations. This video has given me a lot to think about, and I look forward to your future tutorials!

  • @cosmosstudios3730
    @cosmosstudios37303 жыл бұрын

    underrated channel.

  • @austral4384

    @austral4384

    3 жыл бұрын

    REALLY UNDERRATED!!!

  • @zaniron
    @zaniron3 жыл бұрын

    I've been trying to get mine to work for a couple days now in a snappy way. Just stumbled on this and it does everything I want it too and I was able to fit the rest of my own movement code in and around it! Incredible video dude!

  • @MiketheNerdRanger
    @MiketheNerdRanger4 жыл бұрын

    Wow this is awesome, It's all finally starting to make sense to me.

  • @SuperSlackOff
    @SuperSlackOff4 жыл бұрын

    Dude you are a god send. Thank you. I hope you keep making more tutorials. Cheers !

  • @judgedev2789
    @judgedev27892 жыл бұрын

    This is the perfect and real way to do Wall Jump Thankss mann you are the best. ❤️

  • @ziadalata
    @ziadalata Жыл бұрын

    you are awsom teacher, you shoud be teaching unity

  • @chronoabi

    @chronoabi

    Жыл бұрын

    Glad you think so!

  • @jad8694
    @jad86943 жыл бұрын

    I really like your art style!

  • @weretrodice421
    @weretrodice4213 жыл бұрын

    Really good channel bro! Subbed for you:)

  • @technoo4891
    @technoo48913 жыл бұрын

    Nice video, thanks.

  • @phen-themoogle7651
    @phen-themoogle76513 жыл бұрын

    I want to make a special kind of wall jump where the player is forced to jump to the opposite wall or at least in that direction /cannot jump straight up walls, hopefully this video covers that...looks promising

  • @ToXiCGIRLS
    @ToXiCGIRLS4 жыл бұрын

    Very Nice video.

  • @noone2410
    @noone24102 жыл бұрын

    I like ur art 👍❤️🔥

  • @NHGeneral
    @NHGeneral3 жыл бұрын

    Awesome tutorial! But, you don't have a Jumping animation control, I have trouble with the "isJumping" transition, I cannot set it according to the "canJump" because it seems too fast for the animation? Anyway, how do you start Jumping animation with this code?

  • @MertAliBarlas
    @MertAliBarlas3 жыл бұрын

    Hey sir, can you make a ledge climb tutorial like dead cells ?

  • @arcanep
    @arcanep3 жыл бұрын

    thanks

  • @AbdulAhad-lb4ff
    @AbdulAhad-lb4ff3 жыл бұрын

    I have a question how do i make it so the player can go up the wall as well something like how reiterate() does it.

  • @DanteStormblessed
    @DanteStormblessed2 жыл бұрын

    you are god!

  • @DavidAdochiti
    @DavidAdochiti2 жыл бұрын

    when I jump, I cant air to control it. also when I try to do the wall jump, it's very unresponsive, and sometimes, the player can just go everywhere when he tries to do it. also when the player wall jumps onto another wall, sometimes he doesn't slide on the wall, he just falls. idk what I'm doing wrong, plz help!

  • @venom_ftw9316
    @venom_ftw93163 жыл бұрын

    👍👍👍👍

  • @malikaikinn1153
    @malikaikinn11538 ай бұрын

    All my video suggestions have exhilarating jazz.. And I don't even listen to jazz

  • @chronoabi
    @chronoabi3 жыл бұрын

    Hey follow me on Discord. Link is here discord.gg/78q3HFnb69 You can ask for help , post what your working on and get motivated , show your funny bugs and memes and more.

  • @congminhtranpham7712
    @congminhtranpham77122 жыл бұрын

    hi im new start unity can you show your animator i can see that and stuty form you , thank you so much

  • @JovsValorant
    @JovsValorant3 жыл бұрын

    How do i edit this if i want to wall slide only if i press the button against the wall

  • @chronoabi

    @chronoabi

    3 жыл бұрын

    probably in the if statement that checks for wall sliding add like an input . Like this eg if(isWallSliding && Input.getKey(Keycode.P)) So that when you are on wall and press the p key it does a wall slide.

  • @JovsValorant

    @JovsValorant

    3 жыл бұрын

    @@chronoabi i encountered this bug when im spamming the space button beside the wall when im mid-air, it will jump really high

  • @modgamesnet

    @modgamesnet

    3 жыл бұрын

    There's an easier solution for this: In movement function: moveInput = Input.GetAxisRaw("Horizontal"); In wallslide function: if(isTouchingWall && !onGround && rdBody2D.velocity.y This way you'll be able to slide only on pressing movement button towards the wall.

  • @JovsValorant

    @JovsValorant

    3 жыл бұрын

    @@modgamesnet worked like a charm, thanks!

  • @adeshrai3042
    @adeshrai30424 жыл бұрын

    cls sake paxi tmro video complete gardeu la XD

  • @chronoabi

    @chronoabi

    4 жыл бұрын

    k vanya??

  • @adeshrai3042

    @adeshrai3042

    4 жыл бұрын

    @@chronoabi alu

  • @RRaidyn
    @RRaidyn3 жыл бұрын

    Merhaba, Türkçe kaynak bulabileceğim bir yer var mı ?

  • @austral4384
    @austral43843 жыл бұрын

    are u swedish? u say först of all

  • @chronoabi

    @chronoabi

    3 жыл бұрын

    Bro No I am Nepali 😂

  • @austral4384

    @austral4384

    3 жыл бұрын

    Oh u sound Swedish

Келесі