I'm using Oculus Go controls (touchpad + trigger) in my WebXR molecular viewer (pure JavaScript + WebGL + WebXR) at https://www.ibiblio.org/e-notes/webxr/mini.htm. To migrate from Go to Quest I'd like to know, what corresponds to "selectend event" and "xrSession.inputSources[0].gamepad.axes[0/1] on Quest?
WebXR: how to migrate from Oculus Go to Quest?
71 views Asked by Evgeny Demidov At
1
There are 1 answers
Related Questions in MIGRATION
- How Do Schema migration in mongoose & mongodb?
- WPF Windows Initializing is locking the separated thread in .Net 8
- Migrate data from MySQL to PostgreSQL In Azure
- migrate error : ...No migrations to apply
- After upgrading Alfresco from 5.2 to 7.2 getting failed to initialize keystore error. Our old repository is in Alfresco 5.2
- Convert Neoload script to LoadRunner script
- Migration of UseOAuthAuthorizationServer from .Net Framework to .Net8
- Migrate multiple notebooks from current environment to new environment
- How to Generate a Migration Script in the Azure DevOps
- C# Project Coding
- Blazor hybrid cant add migration
- Migrate from SAML extensions to SAML service provider and spring security
- Ejabberd Migration from 23 to 24
- unable to upload Paginated report
- Android Studio could not build Flutter App APK after migration
Related Questions in OCULUSGO
- Proxy or transform a Google Cast to a DLNA (DMS) to view on Oculus Go or other devices?
- How to trigger youtube vr from oculus's browser?
- I want to automatically launch installed applications when my Oculus Go/Quest/Quest 2 machine is turned on
- How to work with build.gradle file in Android Studio
- UnityWebRequest doesn't work in Oculus Go
- Sending basic commands to the Oculus Go running a unity app
- WebXR: how to migrate from Oculus Go to Quest?
- How to trigger Oculus dash from unity script?
- How to build video manager with Unity Addressable Assets?
- Build and Load AssetBundles with Unity for videos?
- Add read permission for USB storage Oculus GO Unity C#
- Saving a txt file to the Oculus Go Internal Storage
- Oculus Go & Unity: Microphone Real-time Playback
- Can't get 360 mp4 video to play in VR (Oculus GO) in Unity
- How to switch scenes using the OVR Utilities?
Related Questions in OCULUSQUEST
- Delay in Passthrough Camera Feed in Unity Quest 3
- How do I get Oculus to access an External Drive through Unity?
- Unity Applications for different VR/AR devices
- Ceating a VR Portal in quest passthrough not working in build for specific unity version (2022.3.9)
- Approach towards running parallel apps and services on VR device
- How can I use adb in Meta Quest3 to get the screen of the device, but I want this screen to be available and processed by me
- VR Oculus 2 through Unity with Firebase integration
- How to get data from quest3 color camera, or get data from passthrough, but in video streaming form?
- Mulitpass getting more FPS than mulitview rendering mode for meta quest 2
- Unity VR: Lagging 360 Video Playback in Build
- Passthrough not working in Oculus Quest 2
- Combine real objects with real objects in VR
- A-Frame Networked Components - Help Needed
- Interaction Button with Oculus quest
- VLC Unity doesn't play video on Oculus Quest 2
Related Questions in WEBXR
- I want to rotate WebXR Rectile towards walls
- Using WebGPURenderer in A-Frame
- Can I develop a WebXR with ARCore API for IOS?
- Why can't I load .gltf model in WebXR Ar Core base example?
- YouTube Embed video Player with Web XR
- ArFrame_getUpdatedTrackables does not return the expected value
- WEBAR camera does not appear the first time it is opened
- Three.js, WebXR VR realtime change after enter VR
- WebXR/VR Canvas how to interact?
- webXR image tracking: Drag and Drop in AR with ThreeJS
- GLB Texture Broken in WebXR Vision Pro
- WebXR device API button to enable WebXR in Vision Pro does not exist in my Vision Pro Simulator setting
- Trouble Integrating reticle.glb as a Marker for Surface Detection in WebXR
- How to make an A-Frame 360 3D Gallery for VR?
- How to add html dom-overlay on top of the WebXR in react
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
On the Quest thumbstick is exposed as
where 0/1 correspond to the right/left hands. Therefore
axes[2,3]should be used (insteadaxes[0,1]on the Go) to get X,Y coordinates.See e.g. https://www.ibiblio.org/e-notes/webxr/mini/micro3q.htm.