diff --git a/tutorials/vr/developing_for_oculus_quest.rst b/tutorials/vr/developing_for_oculus_quest.rst new file mode 100644 index 00000000000..50e53256347 --- /dev/null +++ b/tutorials/vr/developing_for_oculus_quest.rst @@ -0,0 +1,127 @@ +.. _doc_developing_for_oculus_quest: + +Developing for Oculus Quest +=========================== + +Introduction +------------ + +This tutorial goes over how to get started developing for the +Oculus Quest with an official plugin. + +Before getting started there are two things you need to do. + +First you need to go through the steps on the :ref:`doc_exporting_for_android` +page. This leads you through installing the toolset that Godot +needs to export to Android devices. + +Next you need the Quest Plugin. You can download it from the Asset +Library or manually download it from `here <https://github.com/GodotVR/godot-oculus-mobile-asset>`_. + +Setting Up Godot +---------------- + +To get started Open up Godot and create a new project + +.. image:: img/quest_new_project.png + +Make sure to chose the GLES2 renderer. Due to optimisations in 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 looks something like this: + +.. image:: img/quest_project_tree.png + +Now you can start building the main scene, stick to the bare minimum. + +- Add an ARVROrigin node first. +- Then Add three child nodes to the origin node, one ARVRCamera and two ARVRControllers. +- Assign controller id 1 to the first ARVRController and rename that to LeftHand. +- Assign controller id 2 to the second ARVRController and rename that to RightHand. +- Finally add a MeshInstance 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 MeshInstance and move it to the second ARVRController node. These will stand in for our controllers, we're keeping things really simple. + +.. image:: img/quest_scene_tree.png + +Now add a script to the main node and add the following code: + +.. tabs:: + .. code-tab:: gdscript GDScript + + extends Spatial + + var perform_runtime_config = false + + onready var ovr_init_config = preload("res://addons/godot_ovrmobile/OvrInitConfig.gdns").new() + onready var ovr_performance = preload("res://addons/godot_ovrmobile/OvrPerformance.gdns").new() + + func _ready(): + var interface = ARVRServer.find_interface("OVRMobile") + if interface: + ovr_init_config.set_render_target_size_multiplier(1) + + if interface.initialize(): + get_viewport().arvr = true + + + func _process(_delta): + if !perform_runtime_config: + ovr_performance.set_clock_levels(1, 1) + ovr_performance.set_extra_latency_mode(1) + perform_runtime_config = true + +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. + +..image:: img/quest_project_settings.png + +Then go into the export menu and configure a new Android export. if +you still haven't gone through the :ref:`doc_exporting_for_android` +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 "Oculus Mobile VR". +Then change the Degrees of Freedom mode to "6DOF". + +..image:: img/quest_export_settings.png + +Now save and close the export window. + +Setting Up Your Quest +--------------------- + +Finally take out your phone, when you got your Quest you needed to +install an Oculus app on it and link it up to your Quest. Start the +Oculus app. Press the settings cogwheel on the bottom right hand side. +Select your Quest: + +.. image:: img/quest_phone_settings.png + +Select "More Settings", and select "Developer Mode": + +.. image:: img/quest_phone_settings_2.png + +Now turn developer mode on: + +.. image:: img/quest_developer_mode.png + +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 <https://github.com/NeoSpark314/godot_oculus_quest_toolkit>`_. + +If you want to help out with improving the plugin please join us `here <https://github.com/GodotVR/godot_oculus_mobile>`_. diff --git a/tutorials/vr/img/quest_developer_mode.png b/tutorials/vr/img/quest_developer_mode.png new file mode 100644 index 00000000000..b5319ca8a12 Binary files /dev/null and b/tutorials/vr/img/quest_developer_mode.png differ diff --git a/tutorials/vr/img/quest_export_settings.png b/tutorials/vr/img/quest_export_settings.png new file mode 100644 index 00000000000..91896f163fc Binary files /dev/null and b/tutorials/vr/img/quest_export_settings.png differ diff --git a/tutorials/vr/img/quest_new_project.png b/tutorials/vr/img/quest_new_project.png new file mode 100644 index 00000000000..f7a2ec1f8e2 Binary files /dev/null and b/tutorials/vr/img/quest_new_project.png differ diff --git a/tutorials/vr/img/quest_phone_settings.png b/tutorials/vr/img/quest_phone_settings.png new file mode 100644 index 00000000000..260adc3340b Binary files /dev/null and b/tutorials/vr/img/quest_phone_settings.png differ diff --git a/tutorials/vr/img/quest_phone_settings_2.png b/tutorials/vr/img/quest_phone_settings_2.png new file mode 100644 index 00000000000..44e9767f143 Binary files /dev/null and b/tutorials/vr/img/quest_phone_settings_2.png differ diff --git a/tutorials/vr/img/quest_project_settings.png b/tutorials/vr/img/quest_project_settings.png new file mode 100644 index 00000000000..597ff95a7f5 Binary files /dev/null and b/tutorials/vr/img/quest_project_settings.png differ diff --git a/tutorials/vr/img/quest_project_tree.png b/tutorials/vr/img/quest_project_tree.png new file mode 100644 index 00000000000..7468e2dd80c Binary files /dev/null and b/tutorials/vr/img/quest_project_tree.png differ diff --git a/tutorials/vr/img/quest_scene_tree.png b/tutorials/vr/img/quest_scene_tree.png new file mode 100644 index 00000000000..2bbc026b744 Binary files /dev/null and b/tutorials/vr/img/quest_scene_tree.png differ diff --git a/tutorials/vr/index.rst b/tutorials/vr/index.rst index 272d8beee22..721be45a4bb 100644 --- a/tutorials/vr/index.rst +++ b/tutorials/vr/index.rst @@ -7,3 +7,4 @@ VR vr_primer vr_starter_tutorial/index + developing_for_oculus_quest