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.”);
}
});