How to Interact in XR - Meta Interaction SDK Part 1

  Рет қаралды 25,250

Valem Tutorials

Valem Tutorials

Күн бұрын

Пікірлер: 63
@ValemTutorials
@ValemTutorials 10 ай бұрын
Hi guys some of you might have seen this video yesterday, I had to reupload it as there was some black screen in the edit ! Thanks for all of you who warned us about this mistake. :)
@santyar4037
@santyar4037 10 ай бұрын
Wow!! Updated stuff to get in touch with vr developing being even easier now!
@soctavian
@soctavian 10 ай бұрын
Incredible, just as I start my bachelor's project on mixed reality with the quest 3, lol. You're a huge inspiration, Valem!
@venusroc1258
@venusroc1258 10 ай бұрын
Thanks Valem. I hope this will be a long serie about Meta SDK
@ValemTutorials
@ValemTutorials 10 ай бұрын
I have one new episode coming this sunday will see what I do next. :D
@dev2b309
@dev2b309 10 ай бұрын
@@ValemTutorialsis that part 2 to this one?
@rafaelcarbonellgisbert
@rafaelcarbonellgisbert 10 ай бұрын
I love your content, you have helped me a lot this last couple of years, please keep going!!!
@JOBNETOR
@JOBNETOR 10 ай бұрын
I love your videos, it’s so helpful
@tunaroll3957
@tunaroll3957 9 ай бұрын
thank you so much for these series! I'm super excited to learn about Meta's XR all in one sdk! I also look forward to participate in the hackathon :)
@brooksw453
@brooksw453 6 ай бұрын
Great demo! I watched this about 10 times.
@xyzconsultingarvr3ddesign8
@xyzconsultingarvr3ddesign8 10 ай бұрын
Lets go! Looking forward to something like this
@AnikenSkiwalker
@AnikenSkiwalker 8 ай бұрын
Finally a great tutorial. I am interested in you redoing the painting example using the Meta XR
@NickMC0512
@NickMC0512 10 ай бұрын
Hi! Will you do a tutorial on how to use those samples for rigs that are from building blocks so I can enable passthrough and room model? Thanks.
@lorenzvr
@lorenzvr 10 ай бұрын
thank you very much to start the series on Meta SDK. There will be explanation about UI Curved interactions with the user interfaces with hand tracking and the buttons with clipped background plane surface of this SDK? and how use in a new scene for an independent project from scratch? I really need that.
@reubenjohn742
@reubenjohn742 10 ай бұрын
Hi valem. Why is the hand tracking work for you in the unity editor without building and running it in the meta quest. How did you do it? I do enable my hand tracking on the oculus and it runs smoothly.
@user-oymy
@user-oymy 10 ай бұрын
Same problem. Enable hand tracking only through Build & Run. Cannot see hands when I play unity editor.
@RiverExplorerGames
@RiverExplorerGames 5 ай бұрын
FYI: Meta XR Interaction SDK OVR Samples is deprecated.
@SarpKaya-p3m
@SarpKaya-p3m 5 ай бұрын
Have you found any solutions?
@RiverExplorerGames
@RiverExplorerGames 5 ай бұрын
@@SarpKaya-p3m As I was not going to install a deprecated package, I can't be sure. I think it might be the optional 'samples' in the Meta XR Interaction toolkit.
@ckmstudios
@ckmstudios 3 ай бұрын
All of the samples can be installed at each Meta XR submodule, which were downloaded with Meta all-in-one. To download samples: 1. In Package Manager, view the projects "In Project". You should see all of the Meta XR sub packages. - If you don't see all the sub packages and only see Meta XR All-In-One SDK, go to Project Settings > Package Manager, and enable "Show Dependencies". 2. Select one of the sub packages, such as Meta XR Interaction SDK. On the right of the Package Manager, you should see details about the package, along with "Samples". 3. Import the samples.
@travist1169
@travist1169 7 ай бұрын
I've read people having a lot of trouble with the all in one, can you do a video using pieces?
@Alekan2602
@Alekan2602 10 ай бұрын
Nice 😁😁
@ishtiaqkhan3815
@ishtiaqkhan3815 9 ай бұрын
Is it possible to create a video demonstrating cleaning techniques? For instance, showing how to effectively clean a dirty mirror and achieve a clean texture by wiping a window or any surface?
@superjaykramer
@superjaykramer 10 ай бұрын
which version of unity are you using?
@seanbrill1409
@seanbrill1409 9 ай бұрын
which unity template did you use?
@yanispella4487
@yanispella4487 7 ай бұрын
Thank you for this video ! Someone know how it is possible to use also Ros# in the same project ? It's seem that there are some issues of compatibility with Meta XR All-in-one SDK
@NURAYTUNCAYKARABİLSEMMETAVERSE
@NURAYTUNCAYKARABİLSEMMETAVERSE 10 ай бұрын
Thank you for the nice explanation. I am using oculus quest 2, I followed the same steps as you, but the scene in Unity is not reflected on my glasses, can you help?
@alifkamaljauhari1161
@alifkamaljauhari1161 10 ай бұрын
me too
@TheARTofMining
@TheARTofMining 10 ай бұрын
Hi Valem thank you for these brilliant tutorials - I am looking for a way to utilise the Teleport ANCHOR but via a script call. The idea is to be able to call a Teleport to location from a C# script without using the controllers. Imagine a narrated tour system that takes the user through a series of locations over time. I have tried various manual scripts but not found a suitable solution that places the player looking at a specific object. Would you know how to hack the Teleport Anchor script such that I could call it from code? Many thanks !!!
@ValemTutorials
@ValemTutorials 10 ай бұрын
Hey thank you for the lovely comment, I think it would be easier in this case to simply change the position of the player through script and not used the teleportation system. :)
@TheARTofMining
@TheARTofMining 10 ай бұрын
@@ValemTutorialsCheers Valem, I actually solved it perfect via using XR Interaction Toolkit namespace and 7 lines of code after an hour of coaching ChatGPT to help me. LOL - If anyone looking for the solution I have pasted below // Get the target rotation Quaternion targetRotation = targetTeleportLocation.transform.rotation; // Create a TeleportRequest with the target position and rotation TeleportRequest teleportRequest = new TeleportRequest() { destinationPosition = targetTeleportLocation.transform.position, destinationRotation = targetRotation }; // Queue teleportation request teleportationProvider.QueueTeleportRequest(teleportRequest); // Get the current camera rotation Quaternion cameraRotation = Quaternion.Euler(0f, MainCamera.transform.localEulerAngles.y, 0f);
@lucashyde1164
@lucashyde1164 9 ай бұрын
I'm curious, I see that you also have the error of saving immutable packages cause of meta xr interaction tool kit. I can't build my project because of these errors. How do I get rid of it?
@fidelinaoliva9373
@fidelinaoliva9373 9 ай бұрын
Hi I've been watching your tutorials for a while now. I have a question on creting a new project for mixed reality: "Do you create "3D" or "VR"?
@MaddoxDevGames
@MaddoxDevGames Ай бұрын
You can do either usually but 3d is best so you know exactly whats going into the project
@Haniarifah753
@Haniarifah753 4 ай бұрын
i can't found samples in Meta OVR Interaction Sample, why? please help me..
@pinkyi569
@pinkyi569 4 ай бұрын
hey! you can install "Meta XR Interaction SDK" instead. It worked for me. good luck!
@许诗卉
@许诗卉 6 ай бұрын
Why I cannot use hand tracking through play mode quest link?
@rocketshift-studio
@rocketshift-studio 10 ай бұрын
Hi, is there any way we can contact personally?
@CryptoKaiwen
@CryptoKaiwen 9 ай бұрын
How do you get to use the keyboard?
@abdulsyafiqbahrin5768
@abdulsyafiqbahrin5768 4 ай бұрын
wow Meta OVR Interaction Sample already labelled as deprecated
@asahiz9972
@asahiz9972 4 ай бұрын
Since it is no longer an independent package, it is now merely a sample within the Meta XR Interaction SDK.
@ckmstudios
@ckmstudios 3 ай бұрын
On Unity 2021.3 LTS, I don't seem to have the Meta XR tab in the Project Settings. I only see "Meta Acoustics". Anyone know how I can access this?
@ckmstudios
@ckmstudios 3 ай бұрын
Confirmed that it appears on 2022.3. Still curious though if there's another way on 2021. Thanks!
@milanwulf
@milanwulf 10 ай бұрын
If you come from the Unity GUI and have worked with the components, then the Oculus SDK components are just terrible, no interface designer in the world can work with them properly. Is there a way to use the normal Unity components like Button, Vertical Layout Group etc.? It works fine with the Unity XR Interaction Toolkit, but with OVR I haven't managed to do it properly yet, at least not with controllers, hands, near-, rayinteraction etc.
@PierreYvesRoth
@PierreYvesRoth 9 ай бұрын
I have an issue with the V63 SDK, even in this example scene. I tried to make a stationary VR scene, but when I uncheck the "Use Position Tracking" checkbox, everything becomes distorted, even with the Tracking Origin Type set to "Eye Level". Anyone having a workaround ?
@user-oymy
@user-oymy 10 ай бұрын
Hi. I'm using quest2 and I'm failing to implement hand tracking in unity editor using Meta XR v62 Unity plug-in. Hand tracking is only possible after Build & Run. Can you give me some advice? Please Help. - Desktop OS: Windows 11 - Software version of quest2: 63.0.0 - Meta XR Unity plug-in version: 62.0.0.
@renaudsteve5799
@renaudsteve5799 10 ай бұрын
Salut Valem ... Je me trompe ou tu parles aussi francais?
@ValemTutorials
@ValemTutorials 10 ай бұрын
Oui aha je suis Belges francophone :)
@renaudsteve5799
@renaudsteve5799 10 ай бұрын
Salut du Québec! et merci!@@ValemTutorials
@rinedz893
@rinedz893 8 ай бұрын
PLS ELABORATE THE PLAY BUTTON THAT no need to built and test.. when i tried to play button.. nothing appear on my headset..
@varvarasnitko1461
@varvarasnitko1461 7 ай бұрын
Because he is using a quest link to directly test on the headset
@rodneywheeler7764
@rodneywheeler7764 10 ай бұрын
I Hope one day you show how to import or setup custom hand models... Steam VR demo has cool hand model I would like to use in a game if possible... BUT THOSE BONES!!!!
@xyzconsultingarvr3ddesign8
@xyzconsultingarvr3ddesign8 10 ай бұрын
I exported the meta hands mesh, build on top of them and just retexture and then import back into unity. Didn't have to work on bones or anything just worked flawlessly! I'm sure this wouldn't work if you have a more specific type of hand tho
@rodneywheeler7764
@rodneywheeler7764 10 ай бұрын
@@xyzconsultingarvr3ddesign8 In blender? Im new to this
@RAMACHANDRAN-of5qy
@RAMACHANDRAN-of5qy 10 ай бұрын
will this sdk work in meta quest 2 ?
@ValemTutorials
@ValemTutorials 10 ай бұрын
Yes :) !
@Theovates
@Theovates 10 ай бұрын
Real
@gabrieldesouza112
@gabrieldesouza112 10 ай бұрын
Why are you guys excluding Brazil from the allowed countries to participate in the hackathon? This is so unfair...
@pietrosprudente
@pietrosprudente 9 ай бұрын
(Countries where the law of United States or local law prohibits participating or receiving a prize in the hackathon or that is the target of any trade sanctions.) It's not their fault, it's brazils.
@sidhintzsche6773
@sidhintzsche6773 10 ай бұрын
It must be really frustrating to create tutorial for things that the next update makes useless. I watched all your Mixed reallity videos and some others too. Most of the work is setting up the vr rig completely and now its a template you just doubleclick xD...
@Okrezx
@Okrezx 10 ай бұрын
How to Interact in XR - Meta Interaction SDK Part 2
15:55
Valem Tutorials
Рет қаралды 21 М.
VR Basics: Grabbing Objects | Meta SDK
13:31
immersive insiders
Рет қаралды 3,3 М.
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
How To Create A Unity VR Multiplayer Game in JUST 8 Minutes!
8:18
Dilmer Valecillos
Рет қаралды 8 М.
Mixed Reality With Unity XR Toolkit - Part 1 : Setup
14:19
Valem Tutorials
Рет қаралды 32 М.
Full Body IK with Meta Movement SDK - PART 1
11:43
Valem Tutorials
Рет қаралды 6 М.
Meta’s Building Blocks | Develop Mixed Reality Apps lightning fast
9:42
Black Whale - XR AI Tutorials
Рет қаралды 21 М.
I Made a Game with Chat GPT in 1 Hour
7:45
Emilio Blacksmith
Рет қаралды 148 М.
Meta Headset Tier List
11:14
shalomnin
Рет қаралды 425 М.
Interaction and Full Body IK with Meta Movement SDK - PART 2
6:46
Valem Tutorials
Рет қаралды 2 М.
NEW Interaction SDK Features Are HERE! Hands Locomotion & MORE!
6:31
Dilmer Valecillos
Рет қаралды 6 М.
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН