XR devlog 001 - Setup develop environment


This log mainly focuses on building Godot XR development environment on macOS, if you are using other operating systems, please refer to the corresponding official documents.

After following the instructions in this log, you will be able to get the Godot XR development environment and compile an installer that will run on Meta Quest.

Setup Godot 4.3

If you are using macOS and have Homebrew installed, you can use the brew command to install it.

brew install --cask godot

Setup Android compiler for Godot

  1. Installing Android Studio and OpenJDK@17.

    brew install --cask android-studio openjdk@17
  2. Installing Android SDK and compiling tools.

    To download the Android SDK, please follow the steps outlined in this documentation.

  3. Set up environment variables for the Android SDK and OpenJDK.

    # Android SDK
    export ANDROID_HOME=~/Library/Android/sdk
    export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$ANDROID_HOME/platform-tools
    
    # OpenJDK
    export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"

Setup Godot XR project

Godot gives us all the basic support to setup an XR project with toolkit called Godot XR Tools that implements many of the basic mechanics found in XR games, from locomotion to object interaction to UI interaction.

Godot XR Tools also provides a demo project that we can use to explore XR development in Godot.

  1. Download Godot XR Tools demo project

    Visit Godot XR Tools Releases and download the latest godot-xr-tools-demo.zip file. Then, open this project with Godot.

  2. Add OpenXR vendors loaders and extensions to project.

    Visit the Godot OpenXR Vendors Releases page and download the latest godotopenxrvendors.zip file. After downloading, unzip the file and copy the godotopenxrvendors folder into the addons folder of your godot xr tools demo project. After copying the folder, reload the project and ensure that the libgodotopenxrvendors.macos file can be opened.

  1. Setting up android export settings in Godot

    Open the Godot Editor Settings and update the Java SDK Path and Android SDK Path with their absolute paths.

  1. Install Android Build Template for project

    Select Project -> Install Android Build Template

Setup Meta XR Simulator

  1. Getting Started with Meta XR Simulator
  2. Add Meta XR Simulator to Godot

  1. Running the Meta XR Simulator

    Select the rendering method as Mobile and the XR Runtime as Meta XR Simulator.

Export configuration

Before exporting, ensure that the specific platform plugin is enabled in the XR Features section.

Install the exported package on the physical device

  1. Set up Headset with MQDH
  2. Drag and drop the exported package onto the device

References