We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.

Force Meta Quest Browser to run in 72 FPS

Home Forums WebGL & WebXR Troubleshooting Force Meta Quest Browser to run in 72 FPS

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #82349
    tomtm
    Customer

    Hi,
    Finally it’s possible to force the Meta Quest Browser to force the FPS to whatever you like.
    Since Meta Horizon OS 76, it’s no longer possible to set the FPS, in earlier Versions it was possible to get the 72FPS by using the Energy Mode.
    If you set the FPS with Side Quest, it was only present until the next restart of the headset.

    Here is the snippet which you can use in the Execute Script Puzzle right after
    Enter VR Mode.

    app.renderer.xr.addEventListener(‘sessionstart’, function () {
    const session = app.renderer.xr.getSession();
    if (session.updateTargetFrameRate) {
    session.updateTargetFrameRate(72).catch(function(err) {
    console.warn(“FPS-Änderung fehlgeschlagen:”, err);
    });
    } else {
    console.warn(“updateTargetFrameRate wird nicht unterstützt.”);
    }
    });

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.