Developing for Oculus Quest

    Before starting, there are two things you need to do:

    First you need to go through the steps on the page. This leads you through installing the toolset that Godot needs to export to Android devices.

    Next you need the Quest plugin. You can get it from the Asset Library or manually download it from here.

    To get started open Godot and create a new project.

    Make sure to choose the renderer. Due to the Quest’s GPU this backend is far better suited for the Quest.

    Copy the addons folder from the Oculus Mobile asset into your Godot project. Your project tree should look similar to this:

    ../../_images/quest_project_tree.png

    Now you can start building the main scene:

    • Add an node first.
    • Then add three child nodes to the origin node, one ARVRCamera and two nodes.
    • Assign controller ID 2 to the second ARVRController and rename that to .
    • Finally add a as a child node to our first ARVRController and create a box shape, resize the box so each side is set to 0.1. Now duplicate the and move it to the second ARVRController node. These will stand in for our controllers.

    Now add a script to the main node and add the following code:

    GDScript

    Before you can export this project to the Quest you need to do three more things.

    First go into the project settings and make sure that the main scene is the scene we run. Godot does not ask you to set this on export.

    Then go into the export menu and configure a new Android export. if you still haven’t gone through the page do it now. If you didn’t you’ll have some red messages on this screen.

    If you did you can forge ahead and make a few small changes to the export settings. First change the XR Mode to . Then change the Degrees of Freedom mode to .

    ../../_images/quest_export_settings.png

    Now save and close the export window.

    Select “More Settings”, and select “Developer Mode”:

    ../../_images/quest_phone_settings_2.png

    Now turn developer mode on:

    This allows you to deploy your games to the Quest.

    Connect the Quest to your PC with the provided USB cable. Put the Quest on, it may give a few dialogs to give the PC permission to deploy apps. Now hit the little Android button that should be visible in the top right hand side of your Godot window. It should build your game and export it to the Quest.

    The above does the bare minimum to get your project running on the Quest, it’s not very exciting. Holger Dammertz has made a great toolkit for the quest that contains a lot of scenes to get help you on your way including really nice controller meshes.

    You can find the toolkit here.