UE5 VRNotificationsComponent issues with Quest 2
Hi, I'm trying to complete all the VRC requirements for app labs and I'm using the latest unreal version 5.3.2 with openXR. But for some reason I can't get the vr notifications component to work in a shipped build (it works in the editor and developer build). Does anyone have/had the same problem or gotten it to work in any shipped build version in UE5. I'm currently thinking about downgrading the engine version to 5.2 again and hopefully that will work.1.3KViews0likes1CommentCorrect way to pause game when headset removed / Dash up?
Hi! I am working on a VR application and I need to meet VR.PC.Functional.3. I am testing this in a simple Menu Scene I designed, and it only works partially. When I hit the Oculus button to return to the Dash, the app pauses. Hitting that button again returns the game correctly. However, upon removal of the headset and putting it back on, the OVRCameraRig never begins rendering again. I looked at the component in the inspector while this problem is occurring, and it appears the the OVRCameraRig never was SetActive(true) again. Can anyone help or give me their code that works? Thanks in advance, PicoPlanet Developing Below is my pause script, attached to a separate gameobject: using System.Collections; using System.Collections.Generic; using UnityEngine; public class MenuPauseControl : MonoBehaviour { public GameObject OVRCameraRig; public GameObject Canvas; public GameObject EventSystem; void Start() { } void Update() { if (OVRManager.hasInputFocus && OVRManager.hasVrFocus) { ContinueGame(); } else { PauseGame(); } } private void PauseGame() { Time.timeScale = 0; //Disable stuff that still work while timescale is set to 0 OVRCameraRig.SetActive(false); Canvas.SetActive(false); EventSystem.SetActive(false); } private void ContinueGame() { Time.timeScale = 1; //enable the stuff again OVRCameraRig.SetActive(true); Canvas.SetActive(true); EventSystem.SetActive(true); } } and here's my hierarchy: Any help / code would be greatly appreciated!6.3KViews0likes6CommentsAdmin Verification in org manager trouble
Trying to get myself Admin verified since I am a sole developer without a 'business' I keep getting errors saying they cannot use my drivers license photo to verify my identity. I tried maybe 10 times with different landscape vs portrait photos. Even tried my marriage license. Now it is just stuck in request under review and I cannot do anything else with it? Is there a support email for this? Or has anyone else had this issue?3.1KViews6likes4CommentsNot receiving 2FA confirmation code via text to enable dev mode
As the title says I am not able to set up my two factor authentication code with my phone number because I simply do not receive anything via text message from Meta. I have tried my girlfriends phone number and she also receives nothing. We both have different carriers... Is there any solution to this? I would really like to enable developer mode.. I have zero numbers blocked, I am receiving other automated texts just fine. Never had any problems with that, only with Meta.4.6KViews1like8CommentsWhen is MetaXR OpenGL ES 3.2 Support Slated to occur? If ever?
Looking at the docs it seems like OpenGL ES3.1 is reported to be supported. But UE5 and 5.1 use ES 3.2. Having just tested MetaXR plugin with UE5.0 and enabling ES3.1 I found a brief but very vital warning stating "LogHMD: Warning: OpenGL is not currently supported by OculusXRHMD plugin". UE5 and 5.1 out of the box with OpenXR I don't belief share that information and simply crash when enabling ES 3.2. So essentially, is the aim to depreciate OpenGL ES 3.2 support? Will it continue to be supported until Vulkan reaches feature parity at least? Any news regarding this would be very helpful for VR Video Playback in Unreal and probably in general.2.3KViews0likes0CommentsUse Oculus Quest2 to watch panoramic video dual images
1. Open the VR video in your media file or play it online in your browser 2. Select 360 ° or 180°(3D) mode 3. Then there are repeated images. 4. Pull the trigger and open the video control bar.The viewing experience is normal. 5. Wait 5 seconds.After the video control bar hides automatically, the duplicate image occurs again. Simply put, when you have a video control bar, all the viewing experience is great except that the video control bar itself affects viewing. 6. It will appear in the following applications and websites When viewed directly, there is no video control bar and the image is repeated again.This can also happen when a video is played online in a browser.I suspect the image is too close to me, so we should come up with a plan to adjust the distance between the image and the eyes.Please pay attention to this problem, I am not the only one who has this problem!! (And copy-and-paste capabilities)725Views0likes0Comments[Quest] Handling client logout events on quitting the application
Hi there, I have a client-server model setup where the Quest is a client, connected to an external dedicated server via an IP connection. I can force the Quest to handle a logout by interacting with a UI or pressing a button however I'm wondering if there's a way to automatically have the client disconnect from the server when the application is closed using the Quest's external quit menu? (Pressing the Oculus button and choosing 'Quit') The issue I'm experiencing is that the Quest is still connected to the server even after the application has closed. This results in: - The client's pawn still visible and inactive on the server - The client unable to rejoin the session as it's still technically connected. All help is welcome and appreciated. Thanks, Jackson.872Views1like1CommentOculus Integration's GetLoggedInUser() returns user ID = 0
We use Oculus Integration to source the user's ID, but we observe problematic responses for specific user account's responses from the Oculus SDK. The implementation itself is minimal to present the issue: Users.GetLoggedInUser().OnComplete(delegate (Message<User> message){ user = message.Data; }); For multiple accounts we would test against internally, which previously worked, we now receive a user with ID = 0, both in Unity Editor and on new and previous builds of the project where they once worked correctly. These accounts on Oculus PC have matching Oculus Quest accounts which do continue to work as intended. Has this been observed by others? The problem appears to have arose in the last few months.3.3KViews2likes1CommentApplication ID
I want to develop an app on Unity, and it requires an Application ID Now I don't have one, but it seems I need to fill out a store application with a pitch and all to get one Thing is, I'm doing this to PRACTICE my coding, not so much to PUBLISH right away, I'm an amateur on a good day, and just plain inexperienced every other day Do I NEED the Application ID, and if so, am I going about this wrong, or is the ID for Publishing purposes only594Views0likes0CommentsCustomize how Leaderboards appear in the Oculus Dash? [Bug?/Feature Request]
In a racing game, for example, it would be cool to be able to view the leaderboard in the Oculus dashboard and have the score show as times rather than scores. Right now, as far as I know, they must be represented as just an integer. e.g. the time 1:30:48 must be converted to a positive integer such as 13048, which is much harder for users to understand. Is there any way to change this? Additionally, there is currently the ability to deep-link from the Leaderboard to the game. However, the most specific this gets is on a Leaderboard basis, so you couldn't, for example, challenge a specific user's ghost data from there since there's no way to send dynamic metadata based on which player's leaderboard entry is selected.1.6KViews0likes4Comments