introducing_xr_tools.rst 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .. _doc_introducing_xr_tools:
  2. Introducing XR tools
  3. ====================
  4. Out of the box Godot gives you all the basic support to setup an XR project.
  5. XR specific game mechanics however need to be implemented on top of this foundation.
  6. While Godot makes this relatively easy this can still be a daunting task.
  7. For this reason Godot has developed a toolkit called `Godot XR Tools <https://github.com/GodotVR/godot-xr-tools>`_
  8. that implements many of the basic mechanics found in XR games, from locomotion to object interaction to UI interaction.
  9. This toolkit is designed to work with both OpenXR and WebXR runtimes.
  10. We'll be using this as a base for our documentation here.
  11. It helps developers hit the ground running but for more specific use cases building your own logic is just as valid.
  12. In that case XR tools can help in providing inspiration.
  13. Installing XR Tools
  14. -------------------
  15. Continuing on from our project we started in :ref:`doc_setting_up_xr` we want to add in the Godot XR Tools library.
  16. This can be downloaded from the `Godot XR Tools releases page <https://github.com/GodotVR/godot-xr-tools/releases>`_.
  17. Find the latest release for Godot 4, and under **Assets**, download the
  18. ``godot-xr-tools.zip`` file. You can also find it in the asset library with the
  19. title "Godot XR Tools for Godot 4".
  20. If you're using the zip file, once it's downloaded unzip it.
  21. You will notice the files are held within a ``godot-xr-tools`` subfolder.
  22. Inside of this folder you will find an ``addons`` folder.
  23. It is this folder that you want to copy in its entirety to your Godot project folder. Your project should now look something like this:
  24. .. image:: img/godot_xr_tools_root_folder.webp
  25. Now open up your project in Godot, if you haven't already, and give it a minute or
  26. so to import all the resources of the plugin. If it asks for a path to Blender to
  27. be set you can just click the option to disable blender import and restart the
  28. editor.
  29. After the import finishes you may notice that several "failed to load script"
  30. messages popped up, that's normal, the plugin just needs to be enabled in the
  31. project settings.
  32. Next open the ``Project`` menu and select ``Project Settings..``.
  33. Now go to the ``Plugins`` tab and enable the plugin.
  34. .. image:: img/godot_xr_tools_enable.webp
  35. After doing that you need to close and re-open your project so everything is
  36. properly enabled.
  37. Basic hands
  38. -----------
  39. Just to get a feel of things we're going to add a few standard components that dress up our scene starting with hands for our player.
  40. OpenXR supports full hand tracking however there currently are significant differences in capabilities between the different XR Runtimes.
  41. As a reliable alternative Godot XR Tools comes with a number of rigged hand scenes that react on trigger and grip inputs of your controller.
  42. These hands come in low and high poly versions, come in a few configurations, a number of animation files to control finger positions and a number of different textures.
  43. In your scene tree select your left hand :ref:`XRController3D <class_xrcontroller3d>` node.
  44. Now click on the **instantiate Child Scene** button to add a child scene. Click the
  45. **addons** toggle so the addons folder can be searched. Then search for ``left_hand_low.tscn``,
  46. and select it.
  47. As you can see from the path of this scene, low poly models are in the ``lowpoly`` subfolder while high poly models are in the ``highpoly`` subfolder.
  48. You will want to use the low poly versions if you plan to release your game on mobile devices.
  49. The default hand we chose is just a hand. The other options are:
  50. * tac_glove - the hand is wearing a glove with fingers exposed
  51. * full_glove - the hand is wearing a glove that covers the entire hand
  52. Finally each hand comes in a ``physics`` version.
  53. This exposes all the bones.
  54. We'll look at how that can be used in another tutorial.
  55. We repeat the same for the right hand.
  56. .. image:: img/xr_tools_basic_hands.webp
  57. More information
  58. ----------------
  59. We'll continue with adding features to our tutorial project using Godot XR tools in the next couple of pages.
  60. More detailed information about the toolkit can be found `on the toolkits help pages <https://godotvr.github.io/godot-xr-tools/>`_.