Full Body Physics in VR - Unity Boneworks/Bonelab Tutorial

  Рет қаралды 37,439

Valem Tutorials

Valem Tutorials

Күн бұрын

Пікірлер: 100
@ValemTutorials
@ValemTutorials Жыл бұрын
Hope you guys will enjoy this video and if you have anything you want to see me cover next let me know down bellow ! :)
@bananastudiotheprogramer
@bananastudiotheprogramer Жыл бұрын
maybe add avatar switching like in bonelab or the vechile
@alexgalvez-vega740
@alexgalvez-vega740 Жыл бұрын
A tutorial series that focuses on C# and VR creation could be cool.
@BFFUWGTHAFO
@BFFUWGTHAFO Жыл бұрын
Jumping and climbing with interactable objects!! But mostly jumping please!
@lukeyager5039
@lukeyager5039 Жыл бұрын
Physics hands that respond to weight would be huge
@gioelecarluccio7061
@gioelecarluccio7061 Жыл бұрын
It is possible do it without the controllers? For example making the hand not pass through the table but with hand tracking, and it will be awesome know to do it with oculus integration 🙏🏻🙏🏻
@picoplanetdev
@picoplanetdev Жыл бұрын
This is a huge step up in interactions in VR games and it's great that it is finally available as a tutorial.
@curranh.8328
@curranh.8328 Жыл бұрын
Valem, It is always extremely impressive to me that you have consistently pioneered VR tutorials on unity -- for YEARS -- by taking focus subjects both vast and difficult enough that they should merit a complex case study anywhere else, and efficiently boiling the subject matter down to something always absolutely coherent. They say if you can't explain something simply, then you don't have a deep understanding of it; so I never cease to be amazed! Your grasp on this information is very professional and I have no doubt that you are shaping the future of VR with every exclusive tutorial you release for free on youtube. Please keep it up!! You're my favorite content creator 😁😁
@ValemTutorials
@ValemTutorials Жыл бұрын
Thank you its for comment like these that I make video
@LarryJunior334
@LarryJunior334 9 ай бұрын
im having a problrm with the vr hands they are rotations as if they are on a swivel connrcted to the physicshand, which rotates constantly@@ValemTutorials
@Brcherlovestacos
@Brcherlovestacos 7 ай бұрын
its because controllers arent connected you need steam vr open@@LarryJunior334
@Mozzzie
@Mozzzie 11 ай бұрын
Finished Script ;) using System.Collections; using System.Collections.Generic; using UnityEngine; public class PhysicsRig : MonoBehaviour { public Transform playerHead; public Transform leftController; public Transform rightController; public ConfigurableJoint headJoint; public ConfigurableJoint leftHandJoint; public ConfigurableJoint rightHandJoint; public CapsuleCollider bodyCollider; public float bodyHeightMin = 0.5f; public float bodyHeightMax = 2; // Update is called once per frame void FixedUpdate() { bodyCollider.height = Mathf.Clamp(playerHead.localPosition.y, bodyHeightMin, bodyHeightMax); bodyCollider.center = new Vector3(playerHead.localPosition.x, bodyCollider.height / 2, playerHead.localPosition.z); leftHandJoint.targetPosition = leftController.localPosition; leftHandJoint.targetRotation = leftController.localRotation; rightHandJoint.targetPosition = rightController.localPosition; rightHandJoint.targetRotation = rightController.localRotation; headJoint.targetPosition = playerHead.localPosition; } }
@CynonX
@CynonX 4 ай бұрын
you are a life saver
@orngyezreal
@orngyezreal 23 күн бұрын
hippity hoppity...
@Ollie_sm
@Ollie_sm Жыл бұрын
you should do a hand pose tutorial and possibly an updated full body ik tutorial to go with this to make it the true boneworks/bonelab experience, I've seen many people requesting this but either way I know this tutorial series is going to be one of the most helpful ones yet!
@thijsvandercaaij5968
@thijsvandercaaij5968 Жыл бұрын
For anyone else who gets launched upon testing: I had the locomotion components on XR Origin as per a previous tutorial. The Character Controller component has its own collider however which together with the Body Collider from this tutorial sends you flying haha
@nickgamerdudesGT
@nickgamerdudesGT Жыл бұрын
Thanks for this tip it helped me a lot!
@nou2769
@nou2769 Жыл бұрын
I'm getting launched but I don't have the character controller component I thought I finally found a solution 😭
@rainbi991
@rainbi991 Жыл бұрын
@@nou2769 For anyone who's still getting launched, try to make sure the position of all of your children of the Physics Rig are zeroed out. Not entirely sure why it works but I know it has something to do with the configurable joints...
@DigitalAdamTech
@DigitalAdamTech Жыл бұрын
Anyone else figure this out? Zero everything out didn't work either.
@Rabbi32
@Rabbi32 Жыл бұрын
@@DigitalAdamTech its the head when u drastically change the position of one of the spring joints it likes to take the body wt it im working on figuring out a way to stop it. but my problem at least occurs on the start when the body collider is set to min b4 the update of the player then it launches you up when it finally updates. My idea if i can't find anything on the actual spring joint is to update the players height once in the start function then have it update after in the fixed update. Sorry if that's confusing. I'll update once i find solution.
@Giantpenguin
@Giantpenguin Жыл бұрын
Ever thought about doing a tutorial about interacting with other characters? Move limbs, grab their arm and drag them around etc?
@Muffin_Immigrant
@Muffin_Immigrant Жыл бұрын
You wanna make boneworks?
@randommonk1
@randommonk1 7 ай бұрын
u can do that with rigidbody
@FistFullofShrimp
@FistFullofShrimp Жыл бұрын
Doing amazing work as always!!! Sounds like it'll be a solid mini-series. Looking forward to it! 🍤
@ValemTutorials
@ValemTutorials Жыл бұрын
Thanks mister shrimp !
@GeeCeeAte
@GeeCeeAte 9 ай бұрын
AMAZING video!! Thank you! I have been spending soooo much time trying to write followers. Turns out configurable joint has everything i need! Glad I stumbled across your video!
@BFFUWGTHAFO
@BFFUWGTHAFO Жыл бұрын
Omg you are godsend, I was looking into body physics for the past 3 days!! Will you be adding jumping and object interaction too??
@jayminoh4195
@jayminoh4195 Жыл бұрын
This is crazy! I love you, Valem.
@RadicalVids
@RadicalVids 4 күн бұрын
for some reason the capaule collider will not stretch to meet the camera, instead just staying at 0.5, how do i fix this?
@JoyzaInnovations
@JoyzaInnovations Жыл бұрын
I redid this tutorial twice and the hands dont collide and rotating sends me into the sun, is this still functional with 2023 XR interaction system?
@nuin9937
@nuin9937 5 ай бұрын
If the collider wasnt matching for you, you need to set the XR Origin "Tracking Origin Mode" to Device, and the camera Y offset to 0.5
@vivelis
@vivelis Жыл бұрын
Encore une super vidéo, continue comme ça !😺
@cate01a
@cate01a 3 ай бұрын
cheers! i was getting strange behaviour, so i changed the xr rig xr origin tracking origin mode to not specified and left the camera y offset at default of 1.1176 and it works great now
@skippy5652
@skippy5652 Жыл бұрын
I love all of these vids. So many things I want to add to my projets each time! I would love to see you do something with Vive/Tundra Trackers and legs. It would make an interesting vid (and help me out a ton 😀 )
@SethIsTrying
@SethIsTrying 2 ай бұрын
hey just finished this video and when i go to load up my game in vr i am stuck to the ground, and in ver it just looks like a picture. if i move my head up i dont look up in game i just keep sing the same "frame". i have no errors in the console. i dont know what to do
@pandaa1485
@pandaa1485 Жыл бұрын
I have this weird thing that happens at the start of the game there is this bounce that occurs that sends me into the air any idea whats wrong its like the collider falls through the ground then gets launched back up
@jaswei
@jaswei Жыл бұрын
Did you ever find a solution to this issue?
@pandaa1485
@pandaa1485 Жыл бұрын
@@jaswei no
@bytesgroup
@bytesgroup 18 күн бұрын
Had the same problem. Test it on a new scene with a fresh xr origin using part 1-2 of his how to make a vr game vids.
@MykytaPrykhodko
@MykytaPrykhodko 5 ай бұрын
Why this is not working for me?I did everything like in tutorial. Can it be the starting setup?
@thefroogguy
@thefroogguy Жыл бұрын
@ValemTutorials hi your videos are really cool and easy to follow
@surfingnomads6473
@surfingnomads6473 Жыл бұрын
Can anyone tell me why my configurable hand joints are swinging all over the place?
@LarryJunior334
@LarryJunior334 9 ай бұрын
I NEED HELP AS WELL
@3d-action
@3d-action Жыл бұрын
If somehow your hand physic collider is the opposite of your controller then you need to check the rotation on your xr origin.
@nachete1998zgz
@nachete1998zgz Жыл бұрын
the physics work correctly but when In conjunction with the continuous locomotion (instead of teleporting) it does not work. Any idea what physic may be interacting so moving the character glitches?
@theperfectchex3078
@theperfectchex3078 Жыл бұрын
Hey Valem. I love your vr tutorials and I just wanted to ask if you could make more videos on your How To Make a VR Game tutorial. I'm really curious how to make a map you load into and enemy AI's the chase and shoot at you
@matthewBarrie53
@matthewBarrie53 Жыл бұрын
Have you tried this with the OVR Rig with hand tracking? I made an attempt and was getting weird results where the physics did not seem to function correctly.
@pastuh
@pastuh Жыл бұрын
04:42 it's like in app supernatural, except you can't feel random hit :))
@Nareux
@Nareux Жыл бұрын
how do i adjust the strength on the hands???? ive been strugling for an hour now.
@bytesgroup
@bytesgroup 18 күн бұрын
Just change the 5000 and 50 values
@TheBuilderNpc
@TheBuilderNpc 11 ай бұрын
do i still need my camera offset on the XR Origin?
@andrescruz4564
@andrescruz4564 Жыл бұрын
Hey Valem, would you be able to do an updated series on Unity AR Development?
@dexter4383
@dexter4383 Жыл бұрын
Bonelab developers sweating over this one
@DylanChillin927
@DylanChillin927 11 ай бұрын
for people that are bouncing when they spawn in: zero out all the collider centers for the hands and body
@tezashalok8691
@tezashalok8691 Жыл бұрын
valem i love you !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@thefroogguy
@thefroogguy Жыл бұрын
hey i have a problem where my hands dont collide is their something in the code that does that
@bytesgroup
@bytesgroup 18 күн бұрын
Did you not know what you did with the layer? It turns off collision with the body so it doesn't glitch out
@lupus41
@lupus41 Жыл бұрын
Hey, can you make a viedo about velocity traking from the controllers, that would be awsome
@mmmsir6034
@mmmsir6034 9 ай бұрын
all the tutorial he make is trash
@motoday3580
@motoday3580 Жыл бұрын
Nice !
@randommonk1
@randommonk1 7 ай бұрын
i did the script but the stuff dont show up. the thing that tells me to choose capsule collider. can someone send me a file of the script? it didnt work
@bytesgroup
@bytesgroup 18 күн бұрын
paste in the script
@randommonk1
@randommonk1 18 күн бұрын
@@bytesgroup what?
@aiclipsnstuff
@aiclipsnstuff Жыл бұрын
4:26
@VamperMT
@VamperMT Жыл бұрын
Will it work with VR IK?
@NAGYT101
@NAGYT101 Жыл бұрын
i spawn in the floor why
@pastuh
@pastuh Жыл бұрын
Interesting how I would disable hands physics if I want to interact with some objects, but without selecting them ..
@notpxpyt
@notpxpyt Жыл бұрын
Yo this is.bitnof a silly question but can you make a tutorial on how to make a npc like in bonelab and possibly a gore system? Tryna make a game that is blood trail and Bonelab combined
@mmmsir6034
@mmmsir6034 9 ай бұрын
It is so freaking easy, why would you need a tutorial for this trash thing?
@ZA-2cool4U
@ZA-2cool4U Жыл бұрын
EPIC 12th COMMENT LESS GO also thanks for the video this is better than paying 70 bucks for hexabody
@Noah-sw5xw
@Noah-sw5xw Жыл бұрын
finally!
@timmydev8250
@timmydev8250 Жыл бұрын
I love you so much!!!! :D
@mmmsir6034
@mmmsir6034 9 ай бұрын
the tutorial is trash
@ThatsOfficialTiny
@ThatsOfficialTiny 9 ай бұрын
What template do it use
@bytesgroup
@bytesgroup 18 күн бұрын
He said it at the beginning. He uses his own vr hands from his tutorial on how to make a vr game.
@shizik_nomer_1
@shizik_nomer_1 4 ай бұрын
I can't add physics to my hands ):
@PicoBaseball
@PicoBaseball 7 ай бұрын
can someone pased the code bc im lazy asf
@LarryJunior334
@LarryJunior334 9 ай бұрын
why do my hands rotate even when i dont use them? Please, you are my only help @ValemTutorials .
@Jkdk42
@Jkdk42 Жыл бұрын
If i move my hand fast it move my Body up in the air
@JammyJacker
@JammyJacker Жыл бұрын
Cause your comments recent I have a question, what version did you use, because I can’t get mine to work?
@Gunmonkeys_ojvr
@Gunmonkeys_ojvr 8 ай бұрын
i did not want gtag physics if i wanted it i wouldn't have to make all this you can literally just put the colliders on the hand
@nuin9937
@nuin9937 5 ай бұрын
wrong
@TEVRisCOOL
@TEVRisCOOL Ай бұрын
i don't think he knows what gorilla tag is, also this is for vr physics not gorilla tag
@rosx_8446
@rosx_8446 Жыл бұрын
do ik now pls
@user-lv3ju6ro6n
@user-lv3ju6ro6n Жыл бұрын
Anyone who has the scripts
@c.g.1896
@c.g.1896 Жыл бұрын
First
@MeesIsSuckAtGaming
@MeesIsSuckAtGaming 4 ай бұрын
i know that its a year ago that this tut is made but its still helpfull
@orieltv2722
@orieltv2722 Жыл бұрын
it doesnt work, the rotation follows the hand but the position does not
@ZBR92
@ZBR92 5 ай бұрын
have u found the problem to this
@greenboy157
@greenboy157 6 ай бұрын
3:54
@daylightwastaken
@daylightwastaken Жыл бұрын
3:50
Full Body Physics in VR - Unity Boneworks/Bonelab Tutorial Part 2
13:45
Complete VR Body Setup - Arms and Legs IK with Hand Animation
17:36
Valem Tutorials
Рет қаралды 62 М.
Brawl Stars Edit😈📕
00:15
Kan Andrey
Рет қаралды 42 МЛН
Whoa
01:00
Justin Flom
Рет қаралды 59 МЛН
WILL IT BURST?
00:31
Natan por Aí
Рет қаралды 47 МЛН
The biggest lie in video games
15:18
AIA
Рет қаралды 1,9 МЛН
After 11 Prototypes, I finally did it.
22:10
Morley Kert
Рет қаралды 381 М.
Update: Gesture Teleport Feature
0:22
REMIO
Рет қаралды 471
They Dared Me To Make A Game...
12:08
Daniel Krafft
Рет қаралды 1,1 МЛН
Full Body Physics in VR - Unity Boneworks/Bonelab Tutorial Part 3
9:36
The Best Parkour Game? | Parkour Experts Reacts to Vector
14:27
Gamology
Рет қаралды 2,8 МЛН
Training AI Bots to Fight (they started dancing)
15:06
cozmouz
Рет қаралды 271 М.
How to Make a Mechanical Arm at Home out of Cardboard (DIY)
8:21
Mercurium
Рет қаралды 15 МЛН
Brawl Stars Edit😈📕
00:15
Kan Andrey
Рет қаралды 42 МЛН