Crouch - Motion Matching Move Set | Ask a Dev Quickplay Challenge Unreal Engine Tutorial

Поделиться
HTML-код
  • Опубликовано: 9 ноя 2024

Комментарии • 26

  • @StepCrow
    @StepCrow 5 месяцев назад +1

    Cool stuff here Kevin! I’m absolutely loving motion matching myself, your videos have been great for that.

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад +1

      I spent all weekend digging through the MM code. Hoping to share some new ideas with it, but there's still a lot to wrap our heads around. It would prob be more time effecient to way for the demo project, but it's fun to figure out too

  • @itzDrizzyyyman
    @itzDrizzyyyman 5 месяцев назад +1

    Its nice to see you explore the chooser table more 💪🏽 good stuff

  • @ebrahim_mr
    @ebrahim_mr 5 месяцев назад +1

    Thank you Kevin. Keep it going.

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад +1

      You're welcome! Some sleep then on to the next one

  • @HighLammer
    @HighLammer 5 месяцев назад

    Nice work, thanks

  • @Clydiie
    @Clydiie 5 месяцев назад +2

    was very interesting how it kind of worked in method one that surprised me

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад +1

      I was pretty surprised myself. I feel like I had tried stuff like this before but it was always to jank

    • @Clydiie
      @Clydiie 5 месяцев назад +1

      @livinfreestyle6727 same that was the first thing I did when I started messing around with mm and it didn't work

  • @norvsta
    @norvsta 5 месяцев назад

    Great tut! One thing I noticed (only been using UE 3 months) is that you can set up a keypress in BP_ThirdPersonCharacter (or whatever) to set a Boolean to switch to a PSD_Crouch database in the Chooser table, and the character crouches. But if you don't wire that through the UE default Crouch and unCrouch functions then you lose the built-in Crouch features, eg. your Collision Capsule will not reduce to a "Crouched" height. So you can't go through that little door, even though you are Crouched. Hope this makes sense, I'm just a newb :)

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад +1

      That sounds correct and a good distinctioin. You need to use the actual crouch (unlesss you have y our own movement component) otherwise all you would be doing is just showing visuals but not letting the capsule through the door. Good call out.

  • @WestinsWorldStudio
    @WestinsWorldStudio 5 месяцев назад

    Another awesome video!

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад

      Thanks Westins! good seeing you in the live streams too!

  • @Yggdrasil777
    @Yggdrasil777 5 месяцев назад +1

    Hi. @ 14:55, on the Animation Blueprint graphs, if you click the little drop-down next to the Play, Stop, Pause buttons and select No Preview, it will turn off those hovers.

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад

      That is an awesome tip. Thank you so much for sharing

  • @minusnine5036
    @minusnine5036 5 месяцев назад

    Would you ever do a shooting implementation?

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад +1

      Do you mean like an armed vs unarmed? All you would need is a boolean etc that says you're armed and then drop those anims in a PSD and off you go

  • @diaryofjane22
    @diaryofjane22 5 месяцев назад

    Here's what I'm curious about: How could I use motion matching for basic locomotion like this, but then switch to a different state for combat that uses blendspaces? Or do you think motion matching would still be good for that?

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад

      It could just be part of your state machine. Or you could play the actions/combat in slots. It's all pretty much available. As far as could MM handle the combat too, seemingly there is some sort of setup with fortnite. It could be they are using slots, but could be some mix

  • @gamedev1118
    @gamedev1118 5 месяцев назад

    Hello. Thank you for the video. I want to use the Motion Matching to create a European soccer game. Namely, for the animation of the player with the ball. I need to take into account the angle between the player, the ball and the direction of movement. Do I need to write my trajectory plugin?

    • @livinfreestyle6727
      @livinfreestyle6727  5 месяцев назад +1

      We're just starting to get into MM and still have yet to see best practices, but it's possible that you could use the custom traces? For efficiency of time I am going to wait for the sample project to see what kinds of things are available since it's only a few weeks away (supposedly) and work on other stuff in the meantime

  • @retrowrath9374
    @retrowrath9374 25 дней назад

    I don't know why but crouching from a branch, character movement node like you did doesn't work anymore for some reason, only works when off the triggered and completed pins, Triggered >Couch | Completed>UnCrouch. UE5.4.4. EDIT: OK, what works is the state machine version with triggered as crouch and Competed as unCrouched, thankyou.

    • @livinfreestyle6727
      @livinfreestyle6727  24 дня назад +1

      Glad you found a working method. It wouldn't surprise me if there were changes to motioin match between the versions. Don't hesitate to checkout the animation sample project for reference. Thx for watching!!

    • @retrowrath9374
      @retrowrath9374 24 дня назад

      @@livinfreestyle6727 I had jumping and Crouching working but decided to covert to motion matching due to lack of animations, I've only been learning UE5 for about 5 months but got a working playable game of my own with combat up and running, metahuman character, using the Quixel assets, since I have a artistic background so that part is easiest for me. :)