How to Make a 2D RAGDOLL in UNITY (Stick Figure)

Поділитися
Вставка
  • Опубліковано 24 лис 2024
  • Physics based ragdolls are fun!
    And stick figures are easy.
    In this Unity Tutorial learn how to setup your own 2D Ragdoll skeleton that you can easily build from to include Movement and Skeletal Animation. By the end you should have a ragdoll that's able to stand on its own 2 feet.
    Or... write up a grappling hook script and laugh as your ragdoll flops around - the world is your oyster.
    ✨Want to support the channel?
    Buy me a coffee ☕: ko-fi.com/bmoli
    ➤LIKE the video if you enjoyed, it really helps the channel!
    ➤Don't forget to SUBSCRIBE for all the upcoming content.
    ➤Join the new DISCORD SERVER: / discord
    We have channels to help you with your problems!
    ➤Want to make video games? Start with my tutorial Playlist: • Epic Unity Tutorials
    ➤5 Minute Tutorial Series: • 5 Minute Games
    Thanks for watching!
    #bmo #unity #tutorial

КОМЕНТАРІ • 139

  • @kingkiller4630
    @kingkiller4630 4 роки тому +43

    Make standing up and movement tutorial PLEASE

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

      YEPPP PLEASSSEE

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

      Yeaa pleeese

    • @mastcharub7177
      @mastcharub7177 3 роки тому +3

      //make sure to add this to the Player and ignore the errors
      using UnityEngine;
      public class PlayerMovement : MonoBehaviour
      {
      CharacterController characterController;
      public float jumpSpeed = 8.0f;
      public float gravity = 20.0f;
      public float speed = 9.0f;
      private Vector3 moveDirection = Vector3.zero;
      private void Start()
      {
      characterController = GetComponent();
      }
      void Update()
      {
      var horizontal = Input.GetAxis("Horizontal");
      var vertical = Input.GetAxis("Vertical");
      transform.Translate(new Vector3(horizontal, 0, vertical) * (speed * Time.deltaTime));
      if (characterController.isGrounded)
      {
      moveDirection = new Vector3(Input.GetAxis("Horizontal"), 0.0f, Input.GetAxis("Vertical"));
      moveDirection *= speed;
      if (Input.GetButton("Jump"))
      {
      moveDirection.y = jumpSpeed;
      }
      }
      moveDirection.y -= gravity * Time.deltaTime;
      characterController.Move(moveDirection * Time.deltaTime);
      }
      }

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

      @@mastcharub7177 thank you sir

  • @charliedactyl3962
    @charliedactyl3962 4 роки тому +12

    u know what i usually dont sub to the youtube channels that help with coding and unity etc etc but ur content is actually entertaining, keep up the good work :)
    hope u continue the series bc im clueless lmao

    • @BMoDev
      @BMoDev  4 роки тому +2

      I appreciate that!

  • @michaellevac19
    @michaellevac19 4 роки тому +11

    are you kidding?
    how does this man not have more views, you deserve more subs and likes dude, and i would love a tutorial
    on stick figure movement.

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

      appreciate it!

  • @amandacollins7392
    @amandacollins7392 4 роки тому +15

    Love the way the ragdoll man is tossed around
    .... and he looks great balding 😏😏😏

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

      He really does

  • @keventy6114
    @keventy6114 4 роки тому +45

    **runs to neighbor's house, bangs on door** He made the torso into a floor!!! He made the torso into a flooor....

    • @BMoDev
      @BMoDev  4 роки тому +6

      LMAO

    • @Ventinky
      @Ventinky 4 роки тому +2

      i dont understatnd

    • @too-many-choices
      @too-many-choices 3 роки тому +2

      @@Ventinky he used the same sprite for the torso and ground
      ......... also r/woooosh-
      unless that reply was a joke-

  • @jakeduncan2721
    @jakeduncan2721 4 роки тому +2

    The man strikes again - well done

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

      Thank you friend

  • @deadbroadcastpc
    @deadbroadcastpc 4 роки тому +6

    Another good one dude, nicely explained. Thanks!

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

      Thanks! Happy to hear it :)

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

    best tutorial I have ever seen

  • @godzillakingkongvenom
    @godzillakingkongvenom 4 роки тому +5

    Very helpful! Thanks

    • @naturewaving3897
      @naturewaving3897 4 роки тому +4

      its a really quick and easy tutorial yes

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

      Happy to hear that!

  • @eileeng2492
    @eileeng2492 4 роки тому +5

    You found your style
    Good info
    Great delivery!
    Keep going!

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

    thanks dude! i know your channel will grow so fast :)

  • @adam.Leveled
    @adam.Leveled 4 роки тому

    better than most tutos on ytb

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

    when will you record ragdoll movement tutorial?
    btw you deserve a lot more, and you'll get it sooner or later. just keep it up!

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

    This Man Voice Touched y heart

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

    Man I found your video about the input system and subbed, your vids are amazing and you are upholding that opinion very well 👏

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

    Please make a movement, i had fun with the ragdoll you made for like 30 minutes. Very good video!

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

    MORE TUTORIALS PLEASE 👍👍👍

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

      Workin on it!

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

    Bro this guy is amazing he's funny as well
    Very informative incredible
    I'm talking about the stickman

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

    This Tutorial Help me!👍I Recommend it VERY Much :)

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

    please do ragdoll movement

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

    Would love another tutorial on movement/animation!!!

  • @RandomGuy-df5us
    @RandomGuy-df5us 4 роки тому +1

    Loved it bro

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

    lol nice vid bro!

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

    Thanks! This helped me a lot.

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

      Glad to hear it!

  • @jappyproductions4429
    @jappyproductions4429 3 роки тому +3

    I’ve done everything but when I press play my character just float there. I have rigid body 2d and everything as well.

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

    Good. Liked and subscribed.

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

    what is the reloloution for the stickman image? and btw, good video, nice explained!

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

    havn't you already made a video on 2d ragdolls?

    • @BMoDev
      @BMoDev  4 роки тому +4

      Nope! I talked about Skeletal Animation, but this is a pretty different subject. (Though you definitely can use Skeletal Animation with a rig like this, you kind of have to)

  • @_Garm_
    @_Garm_ 4 роки тому +2

    fun tutorial :D

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

      Thanks! 🙏

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

    Im your 2,500th viewer!!

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

      🎊🎉👏🙏🎊🎊

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

    very helpfull mate thank you from bottom of my rigid 2d body

  • @IceCream-sb7lc
    @IceCream-sb7lc 4 роки тому +3

    Your next game in 48 hrs: 2D Rag-dolls in space fighting light-saber wielding pandas. I'll be waiting...

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

      I'm into this

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

    thx mate this helped a lot

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

    I sliced my different parts into their own bits, but they aren’t made separately in the assets.

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

    can you please make a tutorial on moving the ragdoll. i know im late but i cant find any good videos

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

    Good stuff!

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

    nice guide bro, I wonder however why does the pivot point of each hinge come as two separate locations? '~'

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

    Thank you so much!

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

    thanks, man but could you show us how to make the player move

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

    Can you update this for new Unity/explain why my torso remains unconnected? It detaches even though I've followed your video to the letter.

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

    Hey BMo, I don't have Photoshop so is there another way to do that?

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

    thanks I subscribed

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

      Appreciate you 🙏

  • @SantoshP1354
    @SantoshP1354 2 роки тому +5

    For anybody struggling with this:
    Under your "Hinge Joint 2D" component, there is something called "Connected Rigid Body". Drag the sprite you want your limb to connect to into the box.
    For example:
    When connecting your arms, drag the torso sprite to the "Connected Rigid Body" variable.
    I was stuck on this for like 15 minutes and I got frustrated LMAO

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

      WHY IS THIS THE MOST POPULAR COMMENT IN THE VIDEO EVEN TOUGH IT LITERALLY HAS NO REPLIES?

  • @cinemalazare4850
    @cinemalazare4850 4 роки тому +2

    hey the head is not working plz help

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

      ok it is working now thanks:)

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

      Haha, nice my dude

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

      @BMo thanks for making this video also can u make a part to like how to make the character move?

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

    Ragdoll animation?
    Plus self balancing pls

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

    click on create physics material 2d and then turn the bounce to 5 and drag it on to your floor I will leave you to see what happens

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

    I got a problem when making the hinge joint 2d because in the conected rigid body the torso doesn't appear to me

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

    hi I messed around basicly make his body parts as dislocated as posible and slowly but surely he will start moving

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

    wo i love it

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

    Please can you make a ragdoll movement tutorial

  • @ПетарРадосављевић-п2ф

    i love how he reminds me of dani

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

    pls do movement tutorial

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

    4:07 uh mine says none and its not letting me select the torso, it just says None.

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

    This tutorial was awesome! one question though. what software are you using to draw and create the atlas?

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

      Adobe Photoshop

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

    what program do you use to make this game's assets

  • @johnnyreynolds9657
    @johnnyreynolds9657 19 днів тому

    I don't know C# and can't write a movement script.

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

    Please do the movement tutorial too :3

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

    What size does the Stickman have to be?

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

    how did you make the atlas like what did you use to make it

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

      In this i used photoshop, but you can use anything. Ms paint, gimp, etc

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

    Please do the movement tutorial!

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

    I need your help, i need to make my ragdoll to shoot, but i cant use unverse kinematics for aming, what do i do?

  • @monsterboyx7076
    @monsterboyx7076 4 роки тому +2

    Can u pls make a tutorial on how to add movement to the stickman

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

    this is great but can someone PLEASE tell me what like app he used to draw the stick figer and if its a unity thing please tell me how to get there

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

      I used photoshop, but my point was you could use any art program. It's just circles and rectangles afterall

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

      @@BMoDev yeah i figured it’s out i just has to be a photo of a stickman

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

    Please please make a movement and standing tutorial PLEAAAAAAAASE

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

    How did you make the stickman? And which program did you use for making the stickman

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

      I used photoshop because I can, but you can use Microsoft Paint or anything really... its just squares and circles :)

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

      @@BMoDev thanks!

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

    please make movement toturial please

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

    how is the head arms legs, etc connected to the body?

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

      through the joints we add in the video which is a Unity component, we tie the limbs to the torso and then things like hands/feet to the limbs

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

    8:37 my stick man stands up for like 2 seconds then falls I don't really mind but it isn't the same although I did create the stickman using a slightly different tutorial

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

    Petition for movement tutorial
    Exist to sign

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

    I get an error when im doing the hinge joints, here is what is says
    AnchoredJoint2D.anchor assign attempt for 'Right_Leg' is not valid. Input anchor is { NaN, NaN }.
    UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr)
    anyone know how to fix this?

  • @matteoburzi9016
    @matteoburzi9016 5 місяців тому

    how do i disable the ragdoll?

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

    what do you use to draw the ragdoll?

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

    Love the tutorial, editing is a bit much. There’s a difference in watching a unity tutorial and watching a Danny video for entertainment

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

    Bruh, my Stickman wont show up in the sprite editor

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

    whenever i edit where i want the pins to be placed the entire head comes with it cany anybody help?

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

    Important!
    if it is not working, select everything (apart from the torso )search the connected body and set it to torso!

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

    The Ragdoll Worked Just Fine. But when i put walking animation(This Happend: ua-cam.com/video/e66ICbIBqNM/v-deo.html) How do I fix :7

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

    0:02 THICC

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

    What's the game at 0:15?

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

    my character floats in the air and i think i did everything right

  • @Themplez
    @Themplez 8 місяців тому

    my dudes body is just invisible except his head. um help please

  • @SeanXPlayz
    @SeanXPlayz 4 роки тому +2

    There is 69 comments when I write this lol

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

      Naise ( ͡° ͜ʖ ͡°)

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

      @@BMoDev btw I subbed u deserve more subs

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

      @@SeanXPlayz Appreciate you 🙏

  • @HEESEDJ
    @HEESEDJ 4 роки тому +2

    IM NOT A NOOB

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

    100

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

    Didn’t work

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

    BEans

  • @1_t1zer_16
    @1_t1zer_16 3 роки тому

    Зделай по русски пж

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

    when you dont have photoshop :/

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

      For this you can use anything! It's just circles and squares.
      Gimp, Microsoft Paint, Paint.net, any art program you can get your hands on - there are tons of free ones for all platforms.

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

      @@BMoDev ok I'll try it out thank you

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

    1:31 start