Hello everyone,
currently I am trying to implement AR into my app. It shouldn’t be something special I just want to be able to project the scene into my room and be able to move/scale the on my phone.
For iOS I use the USDZExporter and it’s working fine using iosQuicklook.
For android devices I want to implement the same functionality by using webXR. Starting the session is working fine:
const session = await navigator.xr.requestSession('immersive-ar', { requiredFeatures: ['local-floor', 'hit-test'] })
session.addEventListener('end', () => { renderer.xr.setSession(null) })
renderer.xr.setSession(session)
How am I able to move/scale the scene? I was able to find any examples or threads about this.
I appreciate you help!
Best