Тёмный

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

BMo
Подписаться 32 тыс.
Просмотров 54 тыс.
50% 1

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

Опубликовано:

 

27 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 138   
@kingkiller4630
@kingkiller4630 4 года назад
Make standing up and movement tutorial PLEASE
@rickym7380
@rickym7380 3 года назад
YEPPP PLEASSSEE
@tonoh2447
@tonoh2447 3 года назад
Yeaa pleeese
@mastcharub7177
@mastcharub7177 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 года назад
@@mastcharub7177 thank you sir
@keventy6114
@keventy6114 4 года назад
**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 года назад
LMAO
@Ventinky
@Ventinky 3 года назад
i dont understatnd
@too-many-choices
@too-many-choices 3 года назад
@@Ventinky he used the same sprite for the torso and ground ......... also r/woooosh- unless that reply was a joke-
@amandacollins7392
@amandacollins7392 4 года назад
Love the way the ragdoll man is tossed around .... and he looks great balding 😏😏😏
@BMoDev
@BMoDev 4 года назад
He really does
@charliedactyl3962
@charliedactyl3962 4 года назад
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 года назад
I appreciate that!
@cringedmossy5260
@cringedmossy5260 4 года назад
please do ragdoll movement
@jakeduncan2721
@jakeduncan2721 4 года назад
The man strikes again - well done
@BMoDev
@BMoDev 4 года назад
Thank you friend
@godzillakingkongvenom
@godzillakingkongvenom 4 года назад
Very helpful! Thanks
@naturewaving3897
@naturewaving3897 4 года назад
its a really quick and easy tutorial yes
@BMoDev
@BMoDev 4 года назад
Happy to hear that!
@vukim
@vukim 3 года назад
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!
@michaellevac19
@michaellevac19 4 года назад
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 года назад
appreciate it!
@jossieftheguitarist4677
@jossieftheguitarist4677 2 года назад
best tutorial I have ever seen
@tilexusit9307
@tilexusit9307 4 года назад
MORE TUTORIALS PLEASE 👍👍👍
@BMoDev
@BMoDev 4 года назад
Workin on it!
@cosmic3228
@cosmic3228 4 года назад
Would love another tutorial on movement/animation!!!
@naturewaving3897
@naturewaving3897 4 года назад
havn't you already made a video on 2d ragdolls?
@BMoDev
@BMoDev 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)
@eileeng2492
@eileeng2492 4 года назад
You found your style Good info Great delivery! Keep going!
@hellfireproductions4173
@hellfireproductions4173 11 дней назад
I sliced my different parts into their own bits, but they aren’t made separately in the assets.
@hasanvurucu6523
@hasanvurucu6523 Год назад
Good. Liked and subscribed.
@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.
@lionelnoronha8201
@lionelnoronha8201 3 года назад
Bro this guy is amazing he's funny as well Very informative incredible I'm talking about the stickman
@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!
@RandomGuy-df5us
@RandomGuy-df5us 4 года назад
Loved it bro
@professorchump5598
@professorchump5598 2 года назад
can you please make a tutorial on moving the ragdoll. i know im late but i cant find any good videos
@gamingwithmangoandrrr8304
@gamingwithmangoandrrr8304 3 года назад
lol nice vid bro!
@IceCream-sb7lc
@IceCream-sb7lc 4 года назад
Your next game in 48 hrs: 2D Rag-dolls in space fighting light-saber wielding pandas. I'll be waiting...
@BMoDev
@BMoDev 4 года назад
I'm into this
@adam.Leveled
@adam.Leveled 3 года назад
better than most tutos on ytb
@cringedmossy5260
@cringedmossy5260 4 года назад
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
@MrGidorMr
@MrGidorMr 4 года назад
Lol
@ПетарРадосављевић-п2ф
i love how he reminds me of dani
@_Garm_
@_Garm_ 4 года назад
fun tutorial :D
@BMoDev
@BMoDev 4 года назад
Thanks! 🙏
@jimkeen7674
@jimkeen7674 3 года назад
Thanks! This helped me a lot.
@BMoDev
@BMoDev 3 года назад
Glad to hear it!
@granfill
@granfill 2 года назад
This Tutorial Help me!👍I Recommend it VERY Much :)
@anshulsingh8326
@anshulsingh8326 3 года назад
Ragdoll animation? Plus self balancing pls
@ognjenidjecak76
@ognjenidjecak76 2 года назад
Hey BMo, I don't have Photoshop so is there another way to do that?
@monke5507
@monke5507 2 года назад
thanks, man but could you show us how to make the player move
@SantoshP1354
@SantoshP1354 Год назад
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?
@honigkrieger8470
@honigkrieger8470 3 года назад
what is the reloloution for the stickman image? and btw, good video, nice explained!
@Block21312
@Block21312 3 года назад
Any size is relatively fine.
@honigkrieger8470
@honigkrieger8470 3 года назад
@@Block21312 Thanks!
@blekienomoregames9312
@blekienomoregames9312 3 года назад
very helpfull mate thank you from bottom of my rigid 2d body
@Sp33dyfrog
@Sp33dyfrog 2 года назад
What size does the Stickman have to be?
@shipley2800
@shipley2800 3 года назад
pls do movement tutorial
@JdogThe400th
@JdogThe400th 3 года назад
thx mate this helped a lot
@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
@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
@tenorgames
@tenorgames 2 года назад
Good stuff!
@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
@Apples810
@Apples810 3 года назад
Thank you so much!
@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
@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?
@klerisbiba5089
@klerisbiba5089 3 года назад
please make movement toturial please
@cringedmossy5260
@cringedmossy5260 4 года назад
thanks I subscribed
@BMoDev
@BMoDev 4 года назад
Appreciate you 🙏
@cinemalazare4850
@cinemalazare4850 4 года назад
hey the head is not working plz help
@cinemalazare4850
@cinemalazare4850 4 года назад
ok it is working now thanks:)
@BMoDev
@BMoDev 4 года назад
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?
@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 года назад
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
@kubinashina3149
@kubinashina3149 4 года назад
Please can you make a ragdoll movement tutorial
@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
@AvarageMilkEnjoyer
@AvarageMilkEnjoyer 3 года назад
Important! if it is not working, select everything (apart from the torso )search the connected body and set it to torso!
@beanslayer1525
@beanslayer1525 2 года назад
what do you use to draw the ragdoll?
@beanslayer1525
@beanslayer1525 2 года назад
alraedy found it no worries
@muntasirchowdhrymridul64
@muntasirchowdhrymridul64 4 года назад
Please do the movement tutorial too :3
@belalmansour1450
@belalmansour1450 3 года назад
Petition for movement tutorial Exist to sign
@ethanglenn7183
@ethanglenn7183 3 года назад
Please do the movement tutorial!
@averagejoe6373
@averagejoe6373 4 года назад
Please please make a movement and standing tutorial PLEAAAAAAAASE
@lordcatington8188
@lordcatington8188 3 года назад
0:02 THICC
@insertcreativenamehere5473
@insertcreativenamehere5473 3 года назад
How did you make the stickman? And which program did you use for making the stickman
@BMoDev
@BMoDev 3 года назад
I used photoshop because I can, but you can use Microsoft Paint or anything really... its just squares and circles :)
@insertcreativenamehere5473
@insertcreativenamehere5473 3 года назад
@@BMoDev thanks!
@flumzeeRBLX
@flumzeeRBLX 3 года назад
Bruh, my Stickman wont show up in the sprite editor
@Themplez
@Themplez 7 месяцев назад
my dudes body is just invisible except his head. um help please
@Kasuga-
@Kasuga- 2 года назад
The Ragdoll Worked Just Fine. But when i put walking animation(This Happend: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-e66ICbIBqNM.html) How do I fix :7
@HEESEDJ
@HEESEDJ 4 года назад
IM NOT A NOOB
@BobbyTheBest
@BobbyTheBest 2 года назад
Didn’t work
@astheatic
@astheatic 3 года назад
100
@BMoDev
@BMoDev 3 года назад
💯
@leomehta7351
@leomehta7351 2 года назад
BEans
@1_t1zer_16
@1_t1zer_16 3 года назад
Зделай по русски пж
@figurezer0
@figurezer0 4 года назад
when you dont have photoshop :/
@BMoDev
@BMoDev 4 года назад
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
@jappyproductions4429
@jappyproductions4429 3 года назад
I’ve done everything but when I press play my character just float there. I have rigid body 2d and everything as well.
@henkka5647
@henkka5647 3 года назад
same
@deadbroadcastpc
@deadbroadcastpc 4 года назад
Another good one dude, nicely explained. Thanks!
@BMoDev
@BMoDev 4 года назад
Thanks! Happy to hear it :)
@SeanXPlayz
@SeanXPlayz 3 года назад
There is 69 comments when I write this lol
@BMoDev
@BMoDev 3 года назад
Naise ( ͡° ͜ʖ ͡°)
@SeanXPlayz
@SeanXPlayz 3 года назад
@@BMoDev btw I subbed u deserve more subs
@BMoDev
@BMoDev 3 года назад
@@SeanXPlayz Appreciate you 🙏
@StevenCymatics
@StevenCymatics Год назад
Love the tutorial, editing is a bit much. There’s a difference in watching a unity tutorial and watching a Danny video for entertainment
@doodle7832
@doodle7832 3 года назад
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?
@demebemee
@demebemee 4 года назад
Im your 2,500th viewer!!
@BMoDev
@BMoDev 4 года назад
🎊🎉👏🙏🎊🎊
@ConsoleAdmin
@ConsoleAdmin 2 года назад
4:07 uh mine says none and its not letting me select the torso, it just says None.
@franciscosouza6247
@franciscosouza6247 2 года назад
I got a problem when making the hinge joint 2d because in the conected rigid body the torso doesn't appear to me
@chevy6165
@chevy6165 3 года назад
whenever i edit where i want the pins to be placed the entire head comes with it cany anybody help?
@omarelsayed7577
@omarelsayed7577 3 года назад
What's the game at 0:15?
@BMoDev
@BMoDev 3 года назад
Stick Fight: The Game
@omarelsayed7577
@omarelsayed7577 3 года назад
@@BMoDev Thank you.
@askdjtekhnwrijtgneijrgerigeire
@askdjtekhnwrijtgneijrgerigeire 3 года назад
my character floats in the air and i think i did everything right
@matteoburzi9016
@matteoburzi9016 3 месяца назад
how do i disable the ragdoll?
@dylanjackson7325
@dylanjackson7325 3 года назад
nice guide bro, I wonder however why does the pivot point of each hinge come as two separate locations? '~'
@amoguslover6937
@amoguslover6937 3 года назад
thanks dude! i know your channel will grow so fast :)
@adityapartapsinghrathee3927
@adityapartapsinghrathee3927 3 года назад
This Man Voice Touched y heart
@monsterboyx7076
@monsterboyx7076 4 года назад
Can u pls make a tutorial on how to add movement to the stickman
@monsterboyx7076
@monsterboyx7076 4 года назад
Plsssss
@monsterboyx7076
@monsterboyx7076 4 года назад
I'm your sub
Далее
How To SPAWN ANYTHING in your Game with Unity Tutorial
10:45
Meni yerga urdingda
00:20
Просмотров 360 тыс.
Active Ragdolls; What Are They And How They Work
9:41
Active Ragdolls in Unity
10:02
Просмотров 139 тыс.
Ragdoll - Unity легко
15:54
Просмотров 10 тыс.
Unity - 2D Melee Combo System Tutorial
22:15
Просмотров 73 тыс.
2D CHARACTER CUSTOMIZATION in Unity Tutorial
14:49
Просмотров 128 тыс.
Unity ragdolls! Make your characters floppy ;)
11:28
Просмотров 18 тыс.
What size should your assets be? | HD 2D GAME ART
12:10
2D Rigging in Unity without needing Photoshop!
11:53
Просмотров 34 тыс.