2D Top Down Movement Tutorial In Unreal Engine

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

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

  • @grimmlupe
    @grimmlupe 6 หลายเดือนก่อน +1

    I got totally stuck on a tutorial earlier because the way the other guy had his set up, it made my sprite play my right idle animation for like a frame before it would set to the last direction pressed. I found yours and made my blueprint match yours, and not only was it easier, it didn't have any of the problems his had. you're doing god's work, my man. thanks for this.

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

    Found several tutorials about this topic, this one is the best! Really straight forward, well organised and well explained. Thanks so much and subed! looking forward to more of your videos!

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

    Thanks!

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

    This tutorial was very easy to follow and helpful. Thank you! 👍✌

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

    Hi, great videos! Is there any chance that you could make a tutorial on 2d top down melee combat?

  • @baolai13
    @baolai13 5 หลายเดือนก่อน

    super helpful. thank you so much

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

    Amazing help!! Thank you

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

    Hi sir can you please do a tutorial about how to walk upstairs or downstairs with animation, i looked everywhere in the internet but every tutorial about this topic uses the IK not animation

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

    Plzmake how to grab item in right hand i Frist person without hand

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

    damn made it to controls and now starting over because 5.0 doesnt use that input mapping yet

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

    Do you have any tips to make the character jump with this setup?

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

    6:45, I'm not sure but the input asset is missing for me,

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

      it's only in unreal engine 5.1 and onwards

  • @grimmlupe
    @grimmlupe 6 หลายเดือนก่อน

    do you have a tutorial on how to make your character only move in up, down, left, and right? I don't want you to be able to move diagonally and I'm having trouble finding a video for this.

    • @jacobpipers
      @jacobpipers 5 หลายเดือนก่อน

      you want to look into clamping, but most likely you will have to write your own movement controller, Look up tile based movement. you will get a lot of godot and other 2d game based engine tuts but all you need is the math behind it and then to work out how to best handle it in Unreal Engine.

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

    any chance for a complete course in a top down 2d game? :)

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

      no plans for the moment, maybe in the future

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

    Thank you so much in my game development assignment it was really helpful, still I want to report a bug that if I click up/left/down/right arrow before clicking mouse button to run the final program, then it goes opposite directions

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

      Oh don't know sorry, hopefully they update it for mac

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

    hey! your video is amazing but do you have a tutorial on how to create an environment for 2D top-down??

  • @DaviesMurphy
    @DaviesMurphy 17 วันที่ผ่านมา

    my character looks little bit darker than my using color ı tried add a light, skylight and directional light but it doesnt work how fix it

  • @jeanschyso
    @jeanschyso 11 หลายเดือนก่อน

    thank you so much. I just have 1 question. After following your tutorial to the letter (I checked 3 times), I have a character that is falling through the default floor, but the camera doesn't follow it past the floor, and I don't know what to do about that. I was hoping the PlayerStart would spawn my PaperZD character blueprint and it would just float there like yours, but it just falls.

    • @UnrealUniversity
      @UnrealUniversity  11 หลายเดือนก่อน

      That is strange, maybe it could be that your floor has no blocking collision so the player falls through it

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

    You used "empty" or the top down one preset?

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

    how can we do this with just left and right i have an idle move fwd and bwd but i cant get it to work following this i only wanna go left and right not up and down too

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

    how can we make a character to stick on grip movement like chess board rook movement?

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

    How do you apply this to an NPC who has an AI controller? Suppose the AI blackboard has them to to random spots on the map. How would you go about updating the animations etc. ?

  • @Сма_йлик
    @Сма_йлик ปีที่แล้ว

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

    Followed word for word, went back like 3 times and my character won't go up or down :/

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

    Something I've been trying to figure out is how to do nondiagonal movement, while also using the latest input as your movement. Say you press up, you go up and while pressing up you press a different direction you will move in that direction and no longer move in the up direction. Any help with this?

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

      Hey! I haven't implimented this, but here are some ideas to achieve this:
      - For simple 4-directional movement, I like splitting the vertical and horizontal movement. This way you have two 1-dimentional inputs, instead of the single 2-dimentional input with swizzles
      - If you split the inputs this way, you could use some bools and branches to check if both inputs are being pressed and then give priority to the last one that triggered.
      Hope this helps! (and hope it works at all)

  • @lisatapelefond7755
    @lisatapelefond7755 2 หลายเดือนก่อน

    I dont' find a solution, but, what if you wan tintroduce an attack animation, I tried everything and I don't find solution, thank you

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

    Pleas help topdown jump

  • @Juju_-ht4yc
    @Juju_-ht4yc ปีที่แล้ว

    My char not move . I don't know how to fix it.