i added some modification and i obtained this exemple : https://www.babylonjs-playground.com/#BCU1XR#795
With this exemple i want to add AR using WebXR like you said
i added some modification and i obtained this exemple : https://www.babylonjs-playground.com/#BCU1XR#795
With this exemple i want to add AR using WebXR like you said
What happened when you tried adding XR like I mentioned here - Augmented reality ?
xr should be defined. is there an error when you try initializing it?
notice the āawaitā keyword (which you probably removed?). which means - wait until the promise returns.
Also, what browser are you using? How do you simulate AR in your desktop browser?
itās okay for Xr and await function.
you can check in playground exemple : https://www.babylonjs-playground.com/#BCU1XR#796
What happens when you open this?
https://playground.babylonjs.com/#8Y780Y#66
it work in my phone (android 10)
This playground doesnt work because the syntax is incorrect.
yes i know , i just showed u the result when i added :
var xr = scene.createDefaultXRExperienceAsync({/* options, if you want */})
// default is vr, change to ar
xr.enterExitUI["_buttons"][0].sessionMode = āimmersive-arā;
thanks a lot :)))
can i know what are you changing !!!
thanks another time :)))
added async to the main function, it is required for await calls
thannnks a lot @RaananW :)))
@RaananW Hi! is there some kind of documentation for what it is at the moment possible or not possible with AR using babylon? In short is it possioble to achieve something like this?
https://modelviewer.dev/examples/augmented-reality.html
place an object on the floor, change scale and position? what about make the AR 3D Objects react to taps?
thanks!
Good question!
I am actually now writing the global WebXR documentation, it will be available by the end of the week. including AR support and what is / isnāt available.
To answer your question - hit test is implemented, plane detection is implemented, but they are going to be changed very soon, as the APIs in browsers changed as well.
A glimpse at the API can be found here -
https://playground.babylonjs.com/#KVZI50#55
This has plane detection and hit-test enabled, but will only work on chrome 79. Plane detection on the latest canary doesnt work after they removed a needed function on the XRSession object. I need to check exactly why. Seems like a permissions issue.
cool news! I am going to take a look. Is it planed to support ios devices somehow? (chrome on ios doesnt show me the XR flags) The model viewer from google supposedly gives you the option to load .usdz and it should work with ios(havent test it yet tough)
It is (like all browsers on ios) a wrapper on top of Webkit So it will work on iOS the day Apple will consider adding support for it on WebKit.
Hey guys,
i bring up the topic again because i am looking to enable stereo rendering for an augmented reality application to use a head mounted device. Does this work at all with createDefaultXRExperienceAsync() at the moment?
Yes it does!
Using the immersive-ar XR mode. I apologize again for not finishing the documentation last week. Let me refer you to this - you can read my answer there (and see the playground example including the way to enable the background and enter immersive-ar mode: